public static enum LanguageInfo.TextDirection extends Enum<LanguageInfo.TextDirection>
| Enum Constant and Description |
|---|
LTR
Left-to-right
|
RTL
Right-to-left
|
| Modifier and Type | Method and Description |
|---|---|
static LanguageInfo.TextDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LanguageInfo.TextDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="ltr") public static final LanguageInfo.TextDirection LTR
@SerializedName(value="rtl") public static final LanguageInfo.TextDirection RTL
public static LanguageInfo.TextDirection[] values()
for (LanguageInfo.TextDirection c : LanguageInfo.TextDirection.values()) System.out.println(c);
public static LanguageInfo.TextDirection valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.