public enum ArrowDirection extends Enum<ArrowDirection>
Enum Constant and Description |
---|
BOTH_DIRECTION |
LEFT_TO_RIGHT_NORMAL |
RIGHT_TO_LEFT_REVERSE |
SELF |
Modifier and Type | Method and Description |
---|---|
ArrowDirection |
reverse() |
static ArrowDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArrowDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrowDirection LEFT_TO_RIGHT_NORMAL
public static final ArrowDirection RIGHT_TO_LEFT_REVERSE
public static final ArrowDirection SELF
public static final ArrowDirection BOTH_DIRECTION
public static ArrowDirection[] values()
for (ArrowDirection c : ArrowDirection.values()) System.out.println(c);
public static ArrowDirection 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 ArrowDirection reverse()
Copyright © 2015. All Rights Reserved.