summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLVehicleDataNotificationStatus.h
blob: 24a3fc372cad18700767895b661aa60126742e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//  SDLVehicleDataNotificationStatus.h
//


#import "SDLEnum.h"

/**
 * Reflects the status of a vehicle data notification.
 *
 * @since SDL 2.0
 */
@interface SDLVehicleDataNotificationStatus : SDLEnum {
}

/**
 * Convert String to SDLVehicleDataNotificationStatus
 * @param value The value of the string to get an object for
 * @return SDLVehicleDataNotificationStatus
 */
+ (SDLVehicleDataNotificationStatus *)valueOf:(NSString *)value;

/**
 * @abstract Store the enumeration of all possible SDLVehicleDataNotificationStatus
 * @return an array that store all possible SDLVehicleDataNotificationStatus
 */
+ (NSArray *)values;

/**
 * @abstract SDLVehicleDataNotificationStatus: *NOT_SUPPORTED*
 */
+ (SDLVehicleDataNotificationStatus *)NOT_SUPPORTED;

/**
 @abstract SDLVehicleDataNotificationStatus: *NORMAL*
 */
+ (SDLVehicleDataNotificationStatus *)NORMAL;

/**
 @abstract SDLVehicleDataNotificationStatus: *ACTIVE*
 */
+ (SDLVehicleDataNotificationStatus *)ACTIVE;

/**
 @abstract SDLVehicleDataNotificationStatus: *NOT_USED*
 */
+ (SDLVehicleDataNotificationStatus *)NOT_USED;

@end