summaryrefslogtreecommitdiff
path: root/SmartDeviceLink-iOS/SmartDeviceLink/SDLComponentVolumeStatus.m
blob: a30e51ac3150b0412a10d4c4aa2be348f7c855ab (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//  SDLComponentVolumeStatus.m
//
//  Copyright (c) 2014 Ford Motor Company. All rights reserved.

#import "SDLComponentVolumeStatus.h"

SDLComponentVolumeStatus* SDLComponentVolumeStatus_UNKNOWN = nil;
SDLComponentVolumeStatus* SDLComponentVolumeStatus_NORMAL = nil;
SDLComponentVolumeStatus* SDLComponentVolumeStatus_LOW = nil;
SDLComponentVolumeStatus* SDLComponentVolumeStatus_FAULT = nil;
SDLComponentVolumeStatus* SDLComponentVolumeStatus_ALERT = nil;
SDLComponentVolumeStatus* SDLComponentVolumeStatus_NOT_SUPPORTED = nil;

NSMutableArray* SDLComponentVolumeStatus_values = nil;

@implementation SDLComponentVolumeStatus

+(SDLComponentVolumeStatus*) valueOf:(NSString*) value {
    for (SDLComponentVolumeStatus* item in SDLComponentVolumeStatus.values) {
        if ([item.value isEqualToString:value]) {
            return item;
        }
    }
    return nil;
}

+(NSMutableArray*) values {
    if (SDLComponentVolumeStatus_values == nil) {
        SDLComponentVolumeStatus_values = [[NSMutableArray alloc] initWithObjects:
                SDLComponentVolumeStatus.UNKNOWN,
                SDLComponentVolumeStatus.NORMAL,
                SDLComponentVolumeStatus.LOW,
                SDLComponentVolumeStatus.FAULT,
                SDLComponentVolumeStatus.ALERT,
                SDLComponentVolumeStatus.NOT_SUPPORTED,
                nil];
    }
    return SDLComponentVolumeStatus_values;
}

+(SDLComponentVolumeStatus*) UNKNOWN {
    if (SDLComponentVolumeStatus_UNKNOWN == nil) {
        SDLComponentVolumeStatus_UNKNOWN = [[SDLComponentVolumeStatus alloc] initWithValue:@"UNKNOWN"];
    }
    return SDLComponentVolumeStatus_UNKNOWN;
}

+(SDLComponentVolumeStatus*) NORMAL {
    if (SDLComponentVolumeStatus_NORMAL == nil) {
        SDLComponentVolumeStatus_NORMAL = [[SDLComponentVolumeStatus alloc] initWithValue:@"NORMAL"];
    }
    return SDLComponentVolumeStatus_NORMAL;
}

+(SDLComponentVolumeStatus*) LOW {
    if (SDLComponentVolumeStatus_LOW == nil) {
        SDLComponentVolumeStatus_LOW = [[SDLComponentVolumeStatus alloc] initWithValue:@"LOW"];
    }
    return SDLComponentVolumeStatus_LOW;
}

+(SDLComponentVolumeStatus*) FAULT {
    if (SDLComponentVolumeStatus_FAULT == nil) {
        SDLComponentVolumeStatus_FAULT = [[SDLComponentVolumeStatus alloc] initWithValue:@"FAULT"];
    }
    return SDLComponentVolumeStatus_FAULT;
}

+(SDLComponentVolumeStatus*) ALERT {
    if (SDLComponentVolumeStatus_ALERT == nil) {
        SDLComponentVolumeStatus_ALERT = [[SDLComponentVolumeStatus alloc] initWithValue:@"ALERT"];
    }
    return SDLComponentVolumeStatus_ALERT;
}

+(SDLComponentVolumeStatus*) NOT_SUPPORTED {
    if (SDLComponentVolumeStatus_NOT_SUPPORTED == nil) {
        SDLComponentVolumeStatus_NOT_SUPPORTED = [[SDLComponentVolumeStatus alloc] initWithValue:@"NOT_SUPPORTED"];
    }
    return SDLComponentVolumeStatus_NOT_SUPPORTED;
}

@end