summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataStatus.h
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataStatus.h')
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataStatus.h27
1 files changed, 26 insertions, 1 deletions
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataStatus.h b/SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataStatus.h
index 421402ae1..1284e2ab2 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataStatus.h
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataStatus.h
@@ -1,17 +1,42 @@
// SDLVehicleDataStatus.h
//
-// Copyright (c) 2014 Ford Motor Company. All rights reserved.
+
#import "SDLEnum.h"
+/**
+ * Reflects the status of a binary vehicle data item.
+ *
+ * Avaliable since <font color=red><b> SmartDeviceLink 2.0 </b></font>
+ */
@interface SDLVehicleDataStatus : SDLEnum {}
+/**
+ * Convert String to SDLVehicleDataStatus
+ * @param value String
+ * @return SDLVehicleDataStatus
+ */
+(SDLVehicleDataStatus*) valueOf:(NSString*) value;
+/*!
+ @abstract Store the enumeration of all possible SDLVehicleDataStatus
+ @result return an array that store all possible SDLVehicleDataStatus
+ */
+(NSMutableArray*) values;
+/*!
+ @abstract No data avaliable
+ @result return SDLVehicleDataStatus : <font color=gray><i> NO_DATA_EXISTS </i></font>
+ */
+(SDLVehicleDataStatus*) NO_DATA_EXISTS;
+/*!
+ @abstract return SDLVehicleDataStatus : <font color=gray><i> OFF </i></font>
+ */
+(SDLVehicleDataStatus*) OFF;
+/*!
+ @abstract return SDLVehicleDataStatus : <font color=gray><i> ON </i></font>
+ */
+(SDLVehicleDataStatus*) ON;
@end
+