public enum LayoutOrientation extends java.lang.Enum<LayoutOrientation>
Enum Constant and Description |
---|
BOTTOM_TO_TOP |
LEFT_TO_RIGHT |
RIGHT_TO_LEFT |
TOP_TO_BOTTOM |
Modifier and Type | Method and Description |
---|---|
LayoutOrientation |
antiClockwise() |
LayoutOrientation |
clockwise() |
LayoutOrientation |
opposite() |
java.lang.String |
toString() |
static LayoutOrientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LayoutOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayoutOrientation TOP_TO_BOTTOM
public static final LayoutOrientation RIGHT_TO_LEFT
public static final LayoutOrientation BOTTOM_TO_TOP
public static final LayoutOrientation LEFT_TO_RIGHT
public static LayoutOrientation[] values()
for (LayoutOrientation c : LayoutOrientation.values()) System.out.println(c);
public static LayoutOrientation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic LayoutOrientation clockwise()
public LayoutOrientation antiClockwise()
public LayoutOrientation opposite()
public java.lang.String toString()
toString
in class java.lang.Enum<LayoutOrientation>