public enum IndevHouse extends java.lang.Enum<IndevHouse>
| Modifier and Type | Field and Description |
|---|---|
net.minecraft.block.Block |
floorBlock |
java.lang.String |
id |
net.minecraft.block.Block |
wallBlock |
| Modifier and Type | Method and Description |
|---|---|
static IndevHouse |
fromId(java.lang.String id) |
static IndevHouse |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndevHouse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndevHouse NONE
public static final IndevHouse OAK
public static final IndevHouse MOSSY
public final java.lang.String id
public final net.minecraft.block.Block wallBlock
public final net.minecraft.block.Block floorBlock
public static IndevHouse[] values()
for (IndevHouse c : IndevHouse.values()) System.out.println(c);
public static IndevHouse 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 IndevHouse fromId(java.lang.String id)