public enum EntityDataFormat extends java.lang.Enum<EntityDataFormat>
| Enum Constant and Description |
|---|
BYTE |
FLOAT |
INT |
LONG |
NBT |
SHORT |
STRING |
VECTOR3F |
VECTOR3I |
| Modifier and Type | Method and Description |
|---|---|
static EntityDataFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EntityDataFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityDataFormat BYTE
public static final EntityDataFormat SHORT
public static final EntityDataFormat INT
public static final EntityDataFormat FLOAT
public static final EntityDataFormat STRING
public static final EntityDataFormat NBT
public static final EntityDataFormat VECTOR3I
public static final EntityDataFormat LONG
public static final EntityDataFormat VECTOR3F
public static EntityDataFormat[] values()
for (EntityDataFormat c : EntityDataFormat.values()) System.out.println(c);
public static EntityDataFormat 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