summaryrefslogtreecommitdiff
path: root/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/enums/TextAlignment.java
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/enums/TextAlignment.java')
-rwxr-xr-xSDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/enums/TextAlignment.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/enums/TextAlignment.java b/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/enums/TextAlignment.java
deleted file mode 100755
index 9c301f72b..000000000
--- a/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/enums/TextAlignment.java
+++ /dev/null
@@ -1,29 +0,0 @@
-package com.smartdevicelink.proxy.rpc.enums;
-
-/**
- * The list of possible alignments of text in a field.
- * @since SmartDeviceLink 1.0
- */
-public enum TextAlignment {
- /**
- * Text aligned left.
- */
- LEFT_ALIGNED,
- /**
- * Text aligned right.
- */
- RIGHT_ALIGNED,
- /**
- * Text aligned centered.
- */
- CENTERED;
-
- /**
- * Convert String to TextAlignment
- * @param value String
- * @return TextAlignment
- */
- public static TextAlignment valueForString(String value) {
- return valueOf(value);
- }
-}