summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLIgnitionStableStatus.h
blob: 96dcdfaa9a9747cdecb47dd2d0426238cd43b9d1 (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
//  SDLIgnitionStableStatus.h
//


#import "SDLEnum.h"

/**
 * Reflects the ignition switch stability.
 *
 * @since SDL 2.0
 */
@interface SDLIgnitionStableStatus : SDLEnum {
}

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

/**
 * @abstract store all possible SDLIgnitionStableStatus values
 * @return an array with all possible SDLIgnitionStableStatus values inside
 */
+ (NSArray *)values;

/**
 * @abstract The current ignition switch status is considered not to be stable.
 * @return the Ignition Stable Status with value of *IGNITION_SWITCH_NOT_STABLE*
 */
+ (SDLIgnitionStableStatus *)IGNITION_SWITCH_NOT_STABLE;

/**
 * @abstract The current ignition switch status is considered to be stable.
 * @return the Ignition Stable Status with value of *IGNITION_SWITCH_STABLE*
 */
+ (SDLIgnitionStableStatus *)IGNITION_SWITCH_STABLE;

+ (SDLIgnitionStableStatus *)MISSING_FROM_TRANSMITTER;

@end