Enum Constant and Description |
---|
Cycle
Deprecated.
The animation will cycle back and forth.
|
DontLoop
Deprecated.
The animation will not loop.
|
Loop
Deprecated.
The animation will play repeatedly, when it reaches the end
the animation will play again from the beginning, and so on.
|
Modifier and Type | Method and Description |
---|---|
static LoopMode |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static LoopMode[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoopMode Loop
public static final LoopMode DontLoop
public static final LoopMode Cycle
public static LoopMode[] values()
for (LoopMode c : LoopMode.values()) System.out.println(c);
public static LoopMode 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