public enum NBTDataType extends java.lang.Enum<NBTDataType>
Enum Constant and Description |
---|
IS_VEHICLE |
PART_DATA |
UUID |
VEHICLE_BASE |
VEHICLE_LIST |
Modifier and Type | Method and Description |
---|---|
static NBTDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NBTDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NBTDataType VEHICLE_BASE
public static final NBTDataType PART_DATA
public static final NBTDataType VEHICLE_LIST
public static final NBTDataType UUID
public static final NBTDataType IS_VEHICLE
public static NBTDataType[] values()
for (NBTDataType c : NBTDataType.values()) System.out.println(c);
public static NBTDataType 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 null