public enum RuneData extends Enum<RuneData>
| Enum Constant and Description |
|---|
all |
colloq |
image |
plaintext |
stats |
tags |
| Modifier and Type | Method and Description |
|---|---|
static RuneData |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RuneData[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RuneData all
public static final RuneData image
public static final RuneData stats
public static final RuneData tags
public static final RuneData colloq
public static final RuneData plaintext
public static RuneData[] values()
for (RuneData c : RuneData.values()) System.out.println(c);
public static RuneData 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.