Serializable, Comparable<Statistic.Type>public static enum Statistic.Type extends 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(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 © 2019. All rights reserved.