public enum AnimationDirection extends java.lang.Enum<AnimationDirection>
| Modifier and Type | Method and Description |
|---|---|
int |
getDirection() |
AnimationDirection |
getOpposite() |
static AnimationDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnimationDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnimationDirection FORWARDS
public static final AnimationDirection BACKWARDS
public static AnimationDirection[] values()
for (AnimationDirection c : AnimationDirection.values()) System.out.println(c);
public static AnimationDirection 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 int getDirection()
public AnimationDirection getOpposite()