public enum AnimationOrder extends java.lang.Enum<AnimationOrder>
Enum Constant and Description |
---|
ANIM_ORDER_THEN
按顺序播放动画
|
ANIM_ORDER_WITH
组合播放动画
|
Modifier and Type | Method and Description |
---|---|
static AnimationOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnimationOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnimationOrder ANIM_ORDER_WITH
public static final AnimationOrder ANIM_ORDER_THEN
public static AnimationOrder[] values()
for (AnimationOrder c : AnimationOrder.values()) System.out.println(c);
public static AnimationOrder 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