summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataNotificationStatus.h
diff options
context:
space:
mode:
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
+