SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / enums / DeviceLevelStatus.java
1 package com.smartdevicelink.proxy.rpc.enums;\r
2 \r
3 /**\r
4  * Reflects the reported battery status of the connected device, if reported.\r
5  * @since SmartDeviceLink 2.0\r
6  */\r
7 public enum DeviceLevelStatus {\r
8         /**\r
9          * Zero level bars\r
10          */\r
11         ZERO_LEVEL_BARS,\r
12         /**\r
13          * One level bars\r
14          */\r
15         ONE_LEVEL_BARS,\r
16         /**\r
17          * Two level bars\r
18          */\r
19         TWO_LEVEL_BARS,\r
20         /**\r
21          * Three level bars\r
22          */\r
23         THREE_LEVEL_BARS,\r
24         /**\r
25          * Four level bars\r
26          */\r
27         FOUR_LEVEL_BARS,\r
28         /**\r
29          * Not provided\r
30          */\r
31         NOT_PROVIDED;\r
32 \r
33     /**\r
34      * Convert String to DeviceLevelStatus\r
35      * @param value String\r
36      * @return DeviceLevelStatus\r
37      */ \r
38     public static DeviceLevelStatus valueForString(String value) {\r
39         return valueOf(value);\r
40     }\r
41 }\r