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
index df8dd1a..de1c907 100755 (executable)
@@ -1,18 +1,32 @@
-//
-// Copyright (c) 2013 Ford Motor Company
-//
-package com.smartdevicelink.proxy.rpc.enums;
-
-public enum DisplayType {
-    CID,
-    TYPE2,
-    TYPE5,
-    NGN,
-    GEN2_4_DMA,
-    GEN2_8_DMA,
-    GEN2_4_HUD;
-
-    public static DisplayType valueForString(String value) {
-        return valueOf(value);
-    }
-}
+package com.smartdevicelink.proxy.rpc.enums;\r
+\r
+/**\r
+ * Identifies the various display types used by SMARTDEVICELINK. See SmartDeviceLink TDK and Head Unit Guide for further information regarding the displays.\r
+ * @since SmartDeviceLink 1.0\r
+ */\r
+public enum DisplayType {\r
+       /**\r
+        * This display type provides a 2-line x 20 character "dot matrix" display.\r
+        */     \r
+    CID,\r
+    TYPE2,\r
+    TYPE5,\r
+    /**\r
+     * This display type provides an 8 inch touchscreen display.\r
+     */    \r
+    NGN,\r
+    GEN2_8_DMA,\r
+    GEN2_6_DMA,\r
+    MFD3,\r
+    MFD4,\r
+    MFD5;\r
+\r
+    /**\r
+     * Convert String to DisplayType\r
+     * @param value String\r
+     * @return DisplayType\r
+     */\r
+    public static DisplayType valueForString(String value) {\r
+        return valueOf(value);\r
+    }\r
+}\r