public enum UpdatedTileType extends Enum<UpdatedTileType>
| Enum Constant and Description |
|---|
BANNER |
BEACON |
BED |
COMMAND_BLOCK |
END_GATEWAY |
FLOWER_POT |
MOB_SPAWNER |
SHULKER_BOX |
SIGN |
SKULL |
STRUCTURE_BLOCK |
| Modifier and Type | Method and Description |
|---|---|
static UpdatedTileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdatedTileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdatedTileType MOB_SPAWNER
public static final UpdatedTileType COMMAND_BLOCK
public static final UpdatedTileType BEACON
public static final UpdatedTileType SKULL
public static final UpdatedTileType FLOWER_POT
public static final UpdatedTileType BANNER
public static final UpdatedTileType STRUCTURE_BLOCK
public static final UpdatedTileType END_GATEWAY
public static final UpdatedTileType SIGN
public static final UpdatedTileType SHULKER_BOX
public static final UpdatedTileType BED
public static UpdatedTileType[] values()
for (UpdatedTileType c : UpdatedTileType.values()) System.out.println(c);
public static UpdatedTileType 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.