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