SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / enums / VrCapabilities.java
1 package com.smartdevicelink.proxy.rpc.enums;\r
2 \r
3 /**\r
4  * The VR capabilities of the connected SMARTDEVICELINK platform.\r
5  * \r
6  */\r
7 public enum VrCapabilities {\r
8         /**\r
9          * The SMARTDEVICELINK platform is capable of recognizing spoken text in the current\r
10          * language.\r
11          * \r
12          * @since SmartDeviceLink 1.0\r
13          */   \r
14         Text;\r
15 \r
16     public static VrCapabilities valueForString(String value) {\r
17         if (value.toUpperCase().equals(VrCapabilities.Text.toString().toUpperCase()))\r
18         {\r
19                 return VrCapabilities.Text;\r
20         }\r
21         return null;\r
22     }\r
23 }\r