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