public static enum BlockSkull.Types extends java.lang.Enum<BlockSkull.Types> implements BlockSkull.ISkullType
Enum Constant and Description |
---|
CREEPER |
DRAGON |
PLAYER |
SKELETON |
WITHER_SKELETON |
ZOMBIE |
Modifier and Type | Method and Description |
---|---|
static BlockSkull.Types |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockSkull.Types[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockSkull.Types SKELETON
public static final BlockSkull.Types WITHER_SKELETON
public static final BlockSkull.Types PLAYER
public static final BlockSkull.Types ZOMBIE
public static final BlockSkull.Types CREEPER
public static final BlockSkull.Types DRAGON
public static BlockSkull.Types[] values()
for (BlockSkull.Types c : BlockSkull.Types.values()) System.out.println(c);
public static BlockSkull.Types 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 null