public static enum AnimationManager.AnimationPolicy extends java.lang.Enum<AnimationManager.AnimationPolicy>
| Enum Constant and Description |
|---|
LOOP
Indicates that the animations should be looped
|
ONCE
Indicates that the animations should be executed only
once, and then removed from the
AnimationManager |
PING_PONG
Indicates that the animations should be executed in
a ping-pong fashion
|
| Modifier and Type | Method and Description |
|---|---|
static AnimationManager.AnimationPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnimationManager.AnimationPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnimationManager.AnimationPolicy ONCE
AnimationManagerpublic static final AnimationManager.AnimationPolicy PING_PONG
public static final AnimationManager.AnimationPolicy LOOP
public static AnimationManager.AnimationPolicy[] values()
for (AnimationManager.AnimationPolicy c : AnimationManager.AnimationPolicy.values()) System.out.println(c);
public static AnimationManager.AnimationPolicy 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 nullCopyright © 2022. All Rights Reserved.