SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / enums / TextAlignment.java
1 package com.smartdevicelink.proxy.rpc.enums;\r
2 \r
3 /**\r
4  * The list of possible alignments of text in a field.\r
5  * @since SmartDeviceLink 1.0\r
6  */\r
7 public enum TextAlignment {\r
8         /**\r
9          * Text aligned left.\r
10          */\r
11     LEFT_ALIGNED,\r
12     /**\r
13      * Text aligned right.\r
14      */\r
15     RIGHT_ALIGNED,\r
16     /**\r
17      * Text aligned centered.\r
18      */\r
19     CENTERED;\r
20 \r
21     /**\r
22      * Convert String to TextAlignment\r
23      * @param value String\r
24      * @return TextAlignment\r
25      */\r
26     public static TextAlignment valueForString(String value) {\r
27         return valueOf(value);\r
28     }\r
29 }\r