Package net.minecraft.entity.item
Enum EntityPainting.EnumArt
- java.lang.Object
-
- java.lang.Enum<EntityPainting.EnumArt>
-
- net.minecraft.entity.item.EntityPainting.EnumArt
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EntityPainting.EnumArt>
- Enclosing class:
- EntityPainting
public static enum EntityPainting.EnumArt extends java.lang.Enum<EntityPainting.EnumArt>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EntityPainting.EnumArt
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EntityPainting.EnumArt[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KEBAB
public static final EntityPainting.EnumArt KEBAB
-
AZTEC
public static final EntityPainting.EnumArt AZTEC
-
ALBAN
public static final EntityPainting.EnumArt ALBAN
-
AZTEC_2
public static final EntityPainting.EnumArt AZTEC_2
-
BOMB
public static final EntityPainting.EnumArt BOMB
-
PLANT
public static final EntityPainting.EnumArt PLANT
-
WASTELAND
public static final EntityPainting.EnumArt WASTELAND
-
POOL
public static final EntityPainting.EnumArt POOL
-
COURBET
public static final EntityPainting.EnumArt COURBET
-
SEA
public static final EntityPainting.EnumArt SEA
-
SUNSET
public static final EntityPainting.EnumArt SUNSET
-
CREEBET
public static final EntityPainting.EnumArt CREEBET
-
WANDERER
public static final EntityPainting.EnumArt WANDERER
-
GRAHAM
public static final EntityPainting.EnumArt GRAHAM
-
MATCH
public static final EntityPainting.EnumArt MATCH
-
BUST
public static final EntityPainting.EnumArt BUST
-
STAGE
public static final EntityPainting.EnumArt STAGE
-
VOID
public static final EntityPainting.EnumArt VOID
-
SKULL_AND_ROSES
public static final EntityPainting.EnumArt SKULL_AND_ROSES
-
WITHER
public static final EntityPainting.EnumArt WITHER
-
FIGHTERS
public static final EntityPainting.EnumArt FIGHTERS
-
POINTER
public static final EntityPainting.EnumArt POINTER
-
PIGSCENE
public static final EntityPainting.EnumArt PIGSCENE
-
BURNING_SKULL
public static final EntityPainting.EnumArt BURNING_SKULL
-
SKELETON
public static final EntityPainting.EnumArt SKELETON
-
DONKEY_KONG
public static final EntityPainting.EnumArt DONKEY_KONG
-
-
Method Detail
-
values
public static EntityPainting.EnumArt[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EntityPainting.EnumArt c : EntityPainting.EnumArt.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EntityPainting.EnumArt valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-