SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / enums / MediaClockFormat.java
1 package com.smartdevicelink.proxy.rpc.enums;\r
2 \r
3 /**\r
4  * Indicates the format of the time displayed on the connected SMARTDEVICELINK unit.Format\r
5  * description follows the following nomenclature:<br> Sp = Space<br> | = or <br>c =\r
6  * character\r
7  * \r
8  * @since SmartDeviceLink 1.0\r
9  */\r
10 public enum MediaClockFormat {\r
11         /**\r
12          * <p>\r
13          * </p>\r
14          * <ul>\r
15          * <li>maxHours = 19</li>\r
16          * <li>maxMinutes = 59</li>\r
17          * <li>maxSeconds = 59</li>\r
18          * </ul>\r
19          * \r
20          * @since SmartDeviceLink 1.0\r
21          * \r
22          */\r
23         CLOCK1,\r
24         /**\r
25          * <p>\r
26          * </p>\r
27          * <ul>\r
28          * <li>maxHours = 59</li>\r
29          * <li>maxMinutes = 59</li>\r
30          * <li>maxSeconds = 59</li>\r
31          * </ul>\r
32          * \r
33          * @since SmartDeviceLink 1.0\r
34          * \r
35          */    \r
36         CLOCK2,\r
37         /**\r
38          * <p>\r
39          * </p>\r
40          * <ul>\r
41          * <li>maxHours = 9</li>\r
42          * <li>maxMinutes = 59</li>\r
43          * <li>maxSeconds = 59</li>\r
44          * </ul>\r
45          * \r
46          * @since SmartDeviceLink 2.0\r
47          * \r
48          */\r
49     CLOCK3,\r
50         /**\r
51          * <p>\r
52          * </p>\r
53          * <ul>\r
54          * <li>5 characters possible</li>\r
55          * <li>Format: 1|sp c :|sp c c</li>\r
56          * <li>1|sp : digit "1" or space</li>\r
57          * <li>c : character out of following character set: sp|0-9|[letters, see\r
58          * TypeII column in XLS.</li>\r
59          * <li>:|sp : colon or space</li>\r
60          * <li>used for Type II headunit</li>\r
61          * </ul>\r
62          * \r
63          * @since SmartDeviceLink 1.0\r
64          */    \r
65     CLOCKTEXT1,\r
66         /**\r
67          * <p>\r
68          * </p>\r
69          * <ul>\r
70          * <li>5 characters possible</li>\r
71          * <li>Format: 1|sp c :|sp c c</li>\r
72          * <li>1|sp : digit "1" or space</li>\r
73          * <li>c : character out of following character set: sp|0-9|[letters, see\r
74          * CID column in XLS.</li>\r
75          * <li>:|sp : colon or space</li>\r
76          * <li>used for CID headunit</li>\r
77          * </ul>\r
78          * difference between CLOCKTEXT1 and CLOCKTEXT2 is the supported character\r
79          * set\r
80          * \r
81          * @since SmartDeviceLink 1.0\r
82          */    \r
83     CLOCKTEXT2,\r
84         /**\r
85          * <p>\r
86          * </p>\r
87          * <ul>\r
88          * <li>6 chars possible</li>\r
89          * <li>Format: 1|sp c c :|sp c c</li>\r
90          * <li>1|sp : digit "1" or space</li>\r
91          * <li>c : character out of following character set: sp|0-9|[letters, see\r
92          * Type 5 column in XLS].</li>\r
93          * <li>:|sp : colon or space</li>\r
94          * <li>used for Type V headunit</li>\r
95          * </ul>\r
96          * difference between CLOCKTEXT1 and CLOCKTEXT2 is the supported character\r
97          * set\r
98          * \r
99          * \r
100          * @since SmartDeviceLink 1.0\r
101          */    \r
102     CLOCKTEXT3,\r
103         /**\r
104          * <p>\r
105          * </p>\r
106          * <ul>\r
107          * <li>6 chars possible</li>\r
108          * <li>Format:      c   :|sp   c   c   :   c   c</li>\r
109          * <li>:|sp : colon or space</li>\r
110          * <li>c    : character out of following character set: sp|0-9|[letters]</li>\r
111          * <li>used for MFD3/4/5 headunits</li>\r
112          * </ul>\r
113          * \r
114          * \r
115          * @since SmartDeviceLink 2.0\r
116          */\r
117     CLOCKTEXT4;\r
118 \r
119     public static MediaClockFormat valueForString(String value) {\r
120         return valueOf(value);\r
121     }\r
122 }\r