public static enum Animatable.Animation extends java.lang.Enum<Animatable.Animation>
Enum Constant and Description |
---|
MOVE |
MOVE_ROTATE_LEFT |
MOVE_ROTATE_RIGHT |
NONE |
ROTATE_LEFT |
ROTATE_RIGHT |
SCALE |
TRANSFORM |
Modifier and Type | Method and Description |
---|---|
static Animatable.Animation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Animatable.Animation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Animatable.Animation NONE
public static final Animatable.Animation MOVE
public static final Animatable.Animation ROTATE_RIGHT
public static final Animatable.Animation ROTATE_LEFT
public static final Animatable.Animation MOVE_ROTATE_RIGHT
public static final Animatable.Animation MOVE_ROTATE_LEFT
public static final Animatable.Animation SCALE
public static final Animatable.Animation TRANSFORM
public static Animatable.Animation[] values()
for (Animatable.Animation c : Animatable.Animation.values()) System.out.println(c);
public static Animatable.Animation 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