| Enum Constant and Description |
|---|
GAME_DESC |
GAME_ICON |
GAME_NAME |
XML_GAME_DETAILS |
| Modifier and Type | Method and Description |
|---|---|
int |
getIndex()
returns int size for given enum name
|
static Indexes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Indexes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Indexes GAME_NAME
public static final Indexes GAME_DESC
public static final Indexes GAME_ICON
public static final Indexes XML_GAME_DETAILS
public static Indexes[] values()
for (Indexes c : Indexes.values()) System.out.println(c);
public static Indexes 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 getIndex()