public static enum Game.GameType extends java.lang.Enum<Game.GameType>
Modifier and Type | Method and Description |
---|---|
static Game.GameType |
fromKey(int key) |
int |
getKey() |
static Game.GameType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Game.GameType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Game.GameType DEFAULT
public static final Game.GameType TWITCH
public static Game.GameType[] values()
for (Game.GameType c : Game.GameType.values()) System.out.println(c);
public static Game.GameType 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 nullpublic int getKey()
public static Game.GameType fromKey(int key)