public static enum Draw.Align extends Enum<Draw.Align>
Modifier and Type | Method and Description |
---|---|
static Draw.Align |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Draw.Align[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Draw.Align left
public static final Draw.Align top
public static final Draw.Align center
public static final Draw.Align right
public static final Draw.Align bottom
public static Draw.Align[] values()
for (Draw.Align c : Draw.Align.values()) System.out.println(c);
public static Draw.Align 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 nullsee also the complete user documentation .