public static enum Node.RotationKind extends java.lang.Enum<Node.RotationKind>
Enum Constant and Description |
---|
BOTTOM_TO_TOP |
LEFT_TO_RIGHT |
RIGHT_TO_LEFT |
TOP_TO_BOTTOM |
Modifier and Type | Method and Description |
---|---|
static Node.RotationKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Node.RotationKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Node.RotationKind LEFT_TO_RIGHT
public static final Node.RotationKind RIGHT_TO_LEFT
public static final Node.RotationKind TOP_TO_BOTTOM
public static final Node.RotationKind BOTTOM_TO_TOP
public static Node.RotationKind[] values()
for (Node.RotationKind c : Node.RotationKind.values()) System.out.println(c);
public static Node.RotationKind 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 null