public enum RuneListData extends Enum<RuneListData>
| Enum Constant and Description |
|---|
all |
basic |
colloq |
image |
plaintext |
stats |
tags |
| Modifier and Type | Method and Description |
|---|---|
static RuneListData |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuneListData[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuneListData all
public static final RuneListData image
public static final RuneListData stats
public static final RuneListData tags
public static final RuneListData colloq
public static final RuneListData plaintext
public static final RuneListData basic
public static RuneListData[] values()
for (RuneListData c : RuneListData.values()) System.out.println(c);
public static RuneListData valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All rights reserved.