|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Statistic.Type> org.bukkit.Statistic.Type
public static enum Statistic.Type
The type of statistic.
Enum Constant Summary | |
---|---|
BLOCK
Statistics of this type require a Block Material qualifier. |
|
ENTITY
Statistics of this type require an EntityType qualifier. |
|
ITEM
Statistics of this type require an Item Material qualifier. |
|
UNTYPED
Statistics of this type do not require a qualifier. |
Method Summary | |
---|---|
static Statistic.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Statistic.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Statistic.Type UNTYPED
public static final Statistic.Type ITEM
public static final Statistic.Type BLOCK
public static final Statistic.Type ENTITY
Method Detail |
---|
public static Statistic.Type[] values()
for (Statistic.Type c : Statistic.Type.values()) System.out.println(c);
public static Statistic.Type valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |