public static enum BlockDirt.DirtType extends java.lang.Enum<BlockDirt.DirtType> implements IStringSerializable
| Enum Constant and Description |
|---|
COARSE_DIRT |
DIRT |
PODZOL |
| Modifier and Type | Method and Description |
|---|---|
static BlockDirt.DirtType |
byMetadata(int metadata) |
int |
getMetadata() |
java.lang.String |
getName() |
java.lang.String |
getUnlocalizedName() |
java.lang.String |
toString() |
static BlockDirt.DirtType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockDirt.DirtType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockDirt.DirtType DIRT
public static final BlockDirt.DirtType COARSE_DIRT
public static final BlockDirt.DirtType PODZOL
public static BlockDirt.DirtType[] values()
for (BlockDirt.DirtType c : BlockDirt.DirtType.values()) System.out.println(c);
public static BlockDirt.DirtType 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 nullpublic int getMetadata()
public java.lang.String getUnlocalizedName()
public java.lang.String toString()
toString in class java.lang.Enum<BlockDirt.DirtType>public static BlockDirt.DirtType byMetadata(int metadata)
public java.lang.String getName()
getName in interface IStringSerializable