public static enum ScrollingTextureData.LoopType extends java.lang.Enum<ScrollingTextureData.LoopType>
| Enum Constant and Description |
|---|
RESET
After an iteration is complete, the frame will reset to the starting position.
|
REVERSE
The scrolling will go back in reserve order to the starting position.
|
| Modifier and Type | Method and Description |
|---|---|
static ScrollingTextureData.LoopType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScrollingTextureData.LoopType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScrollingTextureData.LoopType RESET
public static final ScrollingTextureData.LoopType REVERSE
public static ScrollingTextureData.LoopType[] values()
for (ScrollingTextureData.LoopType c : ScrollingTextureData.LoopType.values()) System.out.println(c);
public static ScrollingTextureData.LoopType 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