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