SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / enums / DisplayType.java
1 package com.smartdevicelink.proxy.rpc.enums;\r
2 \r
3 /**\r
4  * Identifies the various display types used by SMARTDEVICELINK. See SmartDeviceLink TDK and Head Unit Guide for further information regarding the displays.\r
5  * @since SmartDeviceLink 1.0\r
6  */\r
7 public enum DisplayType {\r
8         /**\r
9          * This display type provides a 2-line x 20 character "dot matrix" display.\r
10          */     \r
11     CID,\r
12     TYPE2,\r
13     TYPE5,\r
14     /**\r
15      * This display type provides an 8 inch touchscreen display.\r
16      */    \r
17     NGN,\r
18     GEN2_8_DMA,\r
19     GEN2_6_DMA,\r
20     MFD3,\r
21     MFD4,\r
22     MFD5;\r
23 \r
24     /**\r
25      * Convert String to DisplayType\r
26      * @param value String\r
27      * @return DisplayType\r
28      */\r
29     public static DisplayType valueForString(String value) {\r
30         return valueOf(value);\r
31     }\r
32 }\r