java.io.Serializable, java.lang.Comparable<Statistic.Type>public static enum Statistic.Type extends java.lang.Enum<Statistic.Type>
| Enum Constant | Description | 
|---|---|
| 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. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static Statistic.Type | valueOf(java.lang.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. | 
public static final Statistic.Type UNTYPED
public static final Statistic.Type ITEM
public static final Statistic.Type BLOCK
public static final Statistic.Type ENTITY
public static Statistic.Type[] values()
for (Statistic.Type c : Statistic.Type.values()) System.out.println(c);
public static Statistic.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2018. All rights reserved.