public static enum BlockStone.EnumType extends java.lang.Enum<BlockStone.EnumType> implements IStringSerializable
Enum Constant and Description |
---|
ANDESITE |
ANDESITE_SMOOTH |
DIORITE |
DIORITE_SMOOTH |
GRANITE |
GRANITE_SMOOTH |
STONE |
Modifier and Type | Field and Description |
---|---|
private boolean |
isNatural |
private MapColor |
mapColor |
private int |
meta |
private static BlockStone.EnumType[] |
META_LOOKUP |
private java.lang.String |
name |
private java.lang.String |
unlocalizedName |
Modifier and Type | Method and Description |
---|---|
static BlockStone.EnumType |
byMetadata(int meta) |
MapColor |
getMapColor() |
int |
getMetadata() |
java.lang.String |
getName() |
java.lang.String |
getUnlocalizedName() |
boolean |
isNatural() |
java.lang.String |
toString() |
static BlockStone.EnumType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockStone.EnumType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockStone.EnumType STONE
public static final BlockStone.EnumType GRANITE
public static final BlockStone.EnumType GRANITE_SMOOTH
public static final BlockStone.EnumType DIORITE
public static final BlockStone.EnumType DIORITE_SMOOTH
public static final BlockStone.EnumType ANDESITE
public static final BlockStone.EnumType ANDESITE_SMOOTH
private static final BlockStone.EnumType[] META_LOOKUP
private final int meta
private final java.lang.String name
private final java.lang.String unlocalizedName
private final MapColor mapColor
private final boolean isNatural
public static BlockStone.EnumType[] values()
for (BlockStone.EnumType c : BlockStone.EnumType.values()) System.out.println(c);
public static BlockStone.EnumType 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 MapColor getMapColor()
public java.lang.String toString()
toString
in class java.lang.Enum<BlockStone.EnumType>
public static BlockStone.EnumType byMetadata(int meta)
public java.lang.String getName()
getName
in interface IStringSerializable
public java.lang.String getUnlocalizedName()
public boolean isNatural()