SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / enums / DriverDistractionState.java
1 /**\r
2  * \r
3  */\r
4 package com.smartdevicelink.proxy.rpc.enums;\r
5 \r
6 /**\r
7  * Enumeration that describes possible states of driver distraction.\r
8  * @since SmartDeviceLink 1.0\r
9  */\r
10 public enum DriverDistractionState {\r
11         /**\r
12          * Driver distraction rules are in effect.\r
13          */\r
14         DD_ON,\r
15         /**\r
16          * Driver distraction rules are NOT in effect.\r
17          */\r
18         DD_OFF;\r
19         \r
20         /**\r
21          * Convert String to DriverDistractionState\r
22          * @param value String\r
23          * @return DriverDistractionState\r
24          */\r
25         public static DriverDistractionState valueForString(String value) {\r
26         return valueOf(value);\r
27     }\r
28 }\r