public enum MonsterEggStoneType extends Enum<MonsterEggStoneType>
| Enum Constant and Description |
|---|
CHISELED_STONE_BRICK |
COBBLESTONE |
CRACKED_STONE_BRICK |
MOSSY_STONE_BRICK |
STONE |
STONE_BRICK |
| Modifier and Type | Method and Description |
|---|---|
static MonsterEggStoneType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MonsterEggStoneType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MonsterEggStoneType STONE
public static final MonsterEggStoneType STONE_BRICK
public static final MonsterEggStoneType MOSSY_STONE_BRICK
public static final MonsterEggStoneType CHISELED_STONE_BRICK
public static final MonsterEggStoneType COBBLESTONE
public static final MonsterEggStoneType CRACKED_STONE_BRICK
public static MonsterEggStoneType[] values()
for (MonsterEggStoneType c : MonsterEggStoneType.values()) System.out.println(c);
public static MonsterEggStoneType 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 © 2021. All rights reserved.