diff options
Diffstat (limited to 'SmartDeviceLink/SDLMaintenanceModeStatus.h')
-rw-r--r-- | SmartDeviceLink/SDLMaintenanceModeStatus.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLMaintenanceModeStatus.h b/SmartDeviceLink/SDLMaintenanceModeStatus.h new file mode 100644 index 000000000..cd399e20c --- /dev/null +++ b/SmartDeviceLink/SDLMaintenanceModeStatus.h @@ -0,0 +1,50 @@ +// SDLMaintenanceModeStatus.h +// + + +#import "SDLEnum.h" + +/** + * The SDLMaintenanceModeStatus class. + */ +@interface SDLMaintenanceModeStatus : SDLEnum { +} + +/** + * @abstract Maintenance Mode Status + * @param value The value of the string to get an object for + * @return SDLMaintenanceModeStatus + */ ++ (SDLMaintenanceModeStatus *)valueOf:(NSString *)value; + +/** + * @abstract declare an array that store all possible Maintenance Mode Status inside + * @return the array + */ ++ (NSArray *)values; + +/** + * @abstract Maintenance Mode Status : Normal + * @return the object with value of *NORMAL* + */ ++ (SDLMaintenanceModeStatus *)NORMAL; + +/** + * @abstract Maintenance Mode Status : Near + * @return the object with value of *NEAR* + */ ++ (SDLMaintenanceModeStatus *)NEAR; + +/** + * @abstract Maintenance Mode Status : Active + * @return the object with value of *ACTIVE* + */ ++ (SDLMaintenanceModeStatus *)ACTIVE; + +/** + * @abstract Maintenance Mode Status : Feature not present + * @return the object with value of *FEATURE_NOT_PRESENT* + */ ++ (SDLMaintenanceModeStatus *)FEATURE_NOT_PRESENT; + +@end |