summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataNotificationStatus.h
diff options
context:
space:
mode:
authorJoel Fischer <joel@livioradio.com>2015-03-09 10:41:15 -0400
committerJoel Fischer <joel@livioradio.com>2015-03-09 10:50:44 -0400
commit25b881cf646de400b1a1b749dc0175a8d073e330 (patch)
treecfed62075bf052ad8c713fb1f8fd199f0b6f5901 /SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataNotificationStatus.h
parentaea65586bb1817cfc9c6b47af273ac6498a27df6 (diff)
downloadsdl_ios-25b881cf646de400b1a1b749dc0175a8d073e330.tar.gz
Documentation of enums, rpcs, and more
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataNotificationStatus.h')
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataNotificationStatus.h29
1 files changed, 28 insertions, 1 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataNotificationStatus.h b/SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataNotificationStatus.h
index a3e289a9b..19a50dd42 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataNotificationStatus.h
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataNotificationStatus.h
@@ -1,18 +1,45 @@
// SDLVehicleDataNotificationStatus.h
//
-// Copyright (c) 2014 Ford Motor Company. All rights reserved.
+
#import "SDLEnum.h"
+/**
+ * Reflects the status of a vehicle data notification.
+ *
+ * Avaliable since <font color=red><b> SmartDeviceLink 2.0 </b></font>
+ */
@interface SDLVehicleDataNotificationStatus : SDLEnum {}
+/**
+ * Convert String to SDLVehicleDataNotificationStatus
+ * @param value String
+ * @return SDLVehicleDataNotificationStatus
+ */
+(SDLVehicleDataNotificationStatus*) valueOf:(NSString*) value;
+/*!
+ @abstract Store the enumeration of all possible SDLVehicleDataNotificationStatus
+ @result return an array that store all possible SDLVehicleDataNotificationStatus
+ */
+(NSMutableArray*) values;
+/*!
+ @abstract SDLVehicleDataNotificationStatus : <font color=gray><i> NOT_SUPPORTED </i></font>
+ */
+(SDLVehicleDataNotificationStatus*) NOT_SUPPORTED;
+/*!
+ @abstract SDLVehicleDataNotificationStatus : <font color=gray><i> NORMAL </i></font>
+ */
+(SDLVehicleDataNotificationStatus*) NORMAL;
+/*!
+ @abstract SDLVehicleDataNotificationStatus : <font color=gray><i> ACTIVE </i></font>
+ */
+(SDLVehicleDataNotificationStatus*) ACTIVE;
+/*!
+ @abstract SDLVehicleDataNotificationStatus : <font color=gray><i> NOT_USED </i></font>
+ */
+(SDLVehicleDataNotificationStatus*) NOT_USED;
@end
+