public enum WallBlockType extends Enum<WallBlockType>
| Enum Constant and Description |
|---|
ANDESITE |
BRICK |
COBBLESTONE |
DIORITE |
END_BRICK |
GRANITE |
MOSSY_COBBLESTONE |
MOSSY_STONE_BRICK |
NETHER_BRICK |
PRISMARINE |
RED_NETHER_BRICK |
RED_SANDSTONE |
SANDSTONE |
STONE_BRICK |
| Modifier and Type | Method and Description |
|---|---|
static WallBlockType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WallBlockType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WallBlockType COBBLESTONE
public static final WallBlockType MOSSY_COBBLESTONE
public static final WallBlockType GRANITE
public static final WallBlockType DIORITE
public static final WallBlockType ANDESITE
public static final WallBlockType SANDSTONE
public static final WallBlockType BRICK
public static final WallBlockType STONE_BRICK
public static final WallBlockType MOSSY_STONE_BRICK
public static final WallBlockType NETHER_BRICK
public static final WallBlockType END_BRICK
public static final WallBlockType PRISMARINE
public static final WallBlockType RED_SANDSTONE
public static final WallBlockType RED_NETHER_BRICK
public static WallBlockType[] values()
for (WallBlockType c : WallBlockType.values()) System.out.println(c);
public static WallBlockType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.