SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / enums / VehicleDataNotificationStatus.java
1 package com.smartdevicelink.proxy.rpc.enums;\r
2 \r
3 /**\r
4  * Reflects the status of a vehicle data notification.\r
5  * @since SmartDeviceLink 2.0\r
6  */\r
7 public enum VehicleDataNotificationStatus {\r
8         NOT_SUPPORTED,\r
9         NORMAL,\r
10         ACTIVE;\r
11 \r
12     /**\r
13      * Convert String to VehicleDataNotificationStatus\r
14      * @param value String\r
15      * @return VehicleDataNotificationStatus\r
16      */    \r
17     public static VehicleDataNotificationStatus valueForString(String value) {\r
18         return valueOf(value);\r
19     }\r
20 }\r