public enum EnumArt extends Enum<EnumArt>
Enum Constant and Description |
---|
Alban |
Aztec |
Aztec2 |
Bomb |
BurningSkull |
Bust |
Courbet |
Creebet |
DonkeyKong |
Fighters |
Graham |
Kebab |
Match |
Pigscene |
Plant |
Pointer |
Pool |
Sea |
Skeleton |
SkullAndRoses |
Stage |
Sunset |
Void |
Wanderer |
Wasteland |
Wither |
Modifier and Type | Field and Description |
---|---|
static int |
maxArtTitleLength
Holds the maximum length of paintings art title.
|
int |
offsetX |
int |
offsetY |
int |
sizeX |
int |
sizeY |
String |
title
Painting Title.
|
Modifier and Type | Method and Description |
---|---|
static EnumArt |
valueOf(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.
|
public static final EnumArt SkullAndRoses
public static final EnumArt BurningSkull
public static final EnumArt DonkeyKong
public static final int maxArtTitleLength
public final int sizeX
public final int sizeY
public final int offsetX
public final int offsetY
public static EnumArt[] values()
for (EnumArt c : EnumArt.values()) System.out.println(c);
public static EnumArt 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 null