SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / enums / VehicleDataEventStatus.java
1 package com.smartdevicelink.proxy.rpc.enums;\r
2 \r
3 /**\r
4  * Reflects the status of a vehicle data event; e.g. a seat belt event status.\r
5  * @since SmartDeviceLink 2.0\r
6  */\r
7 public enum VehicleDataEventStatus {\r
8         /**\r
9          * No event available\r
10          */\r
11         NO_EVENT,\r
12         NO,\r
13         YES,\r
14         /**\r
15          * Vehicle data event is not support \r
16          */\r
17         NOT_SUPPORTED,\r
18         FAULT;\r
19 \r
20     /**\r
21      * Convert String to VehicleDataEventStatus\r
22      * @param value String\r
23      * @return VehicleDataEventStatus\r
24      */         \r
25     public static VehicleDataEventStatus valueForString(String value) {\r
26         return valueOf(value);\r
27     }\r
28 }\r