public static enum Statistic.Type extends Enum<Statistic.Type>
| Enum Constant and Description | 
|---|
| BLOCKStatistics of this type require a Block Material qualifier. | 
| ENTITYStatistics of this type require an EntityType qualifier. | 
| ITEMStatistics of this type require an Item Material qualifier. | 
| UNTYPEDStatistics of this type do not require a qualifier. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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. | 
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(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 © 2016. All rights reserved.