public enum Directionality extends Enum<Directionality>
| Enum Constant and Description |
|---|
AUTO
Automatic.
|
INHERITED
Inherited from the proper parent.
|
LTR
Left-to-Right.
|
RTL
Right-to-Left.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getPrefix() |
String |
toString() |
static Directionality |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Directionality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Directionality AUTO
public static final Directionality LTR
public static final Directionality RTL
public static final Directionality INHERITED
public static Directionality[] values()
for (Directionality c : Directionality.values()) System.out.println(c);
public static Directionality 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 nullpublic String getPrefix()
public String toString()
toString in class Enum<Directionality>Copyright © 2020. All rights reserved.