public enum ItemData extends Enum<ItemData>
| Enum Constant and Description |
|---|
ALL |
COLLOQUIAL |
CONSUME_ON_FULL |
CONSUMED |
DEPTH |
FROM |
GOLD |
GROUPS |
HIDE_FROM_ALL |
IMAGE |
IN_STORE |
INTO |
MAPS |
REQUIRED_CHAMPIONS |
SANITIZED_DESCRIPTION |
SPECIAL_RECIPE |
STACKS |
STATS |
TAGS |
TREE |
| Modifier and Type | Method and Description |
|---|---|
static ItemData |
getByName(String name) |
static ItemData |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemData[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemData ALL
public static final ItemData COLLOQUIAL
public static final ItemData CONSUME_ON_FULL
public static final ItemData CONSUMED
public static final ItemData DEPTH
public static final ItemData FROM
public static final ItemData GOLD
public static final ItemData GROUPS
public static final ItemData HIDE_FROM_ALL
public static final ItemData IMAGE
public static final ItemData IN_STORE
public static final ItemData INTO
public static final ItemData MAPS
public static final ItemData REQUIRED_CHAMPIONS
public static final ItemData SANITIZED_DESCRIPTION
public static final ItemData SPECIAL_RECIPE
public static final ItemData STACKS
public static final ItemData STATS
public static final ItemData TAGS
public static final ItemData TREE
public final String name
public static ItemData[] values()
for (ItemData c : ItemData.values()) System.out.println(c);
public static ItemData 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 © 2015. All rights reserved.