Package net.minecraft.src
Enum EnumArt
- java.lang.Object
-
- java.lang.Enum<EnumArt>
-
- net.minecraft.src.EnumArt
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EnumArt
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static 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 EnumArt Kebab
-
Aztec
public static final EnumArt Aztec
-
Alban
public static final EnumArt Alban
-
Aztec2
public static final EnumArt Aztec2
-
Bomb
public static final EnumArt Bomb
-
Plant
public static final EnumArt Plant
-
Wasteland
public static final EnumArt Wasteland
-
Pool
public static final EnumArt Pool
-
Courbet
public static final EnumArt Courbet
-
Sea
public static final EnumArt Sea
-
Sunset
public static final EnumArt Sunset
-
Creebet
public static final EnumArt Creebet
-
Wanderer
public static final EnumArt Wanderer
-
Graham
public static final EnumArt Graham
-
Match
public static final EnumArt Match
-
Bust
public static final EnumArt Bust
-
Stage
public static final EnumArt Stage
-
Void
public static final EnumArt Void
-
SkullAndRoses
public static final EnumArt SkullAndRoses
-
Fighters
public static final EnumArt Fighters
-
Pointer
public static final EnumArt Pointer
-
Pigscene
public static final EnumArt Pigscene
-
BurningSkull
public static final EnumArt BurningSkull
-
Skeleton
public static final EnumArt Skeleton
-
DonkeyKong
public static final EnumArt DonkeyKong
-
-
Method Detail
-
values
public static 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 (EnumArt c : 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 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
-
-