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