public enum EnumGateMaterial extends java.lang.Enum<EnumGateMaterial>
Enum Constant and Description |
---|
CLAY_BRICK |
GOLD |
IRON |
NETHER_BRICK |
Modifier and Type | Field and Description |
---|---|
net.minecraft.block.Block |
block |
boolean |
canBeModified |
int |
numSlots |
java.lang.String |
tag |
static EnumGateMaterial[] |
VALUES |
Modifier and Type | Method and Description |
---|---|
static EnumGateMaterial |
getByOrdinal(int ord) |
static EnumGateMaterial |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumGateMaterial[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumGateMaterial CLAY_BRICK
public static final EnumGateMaterial IRON
public static final EnumGateMaterial NETHER_BRICK
public static final EnumGateMaterial GOLD
public static final EnumGateMaterial[] VALUES
public final net.minecraft.block.Block block
public final int numSlots
public final boolean canBeModified
public final java.lang.String tag
public static EnumGateMaterial[] values()
for (EnumGateMaterial c : EnumGateMaterial.values()) System.out.println(c);
public static EnumGateMaterial 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 static EnumGateMaterial getByOrdinal(int ord)