public enum GraphicPosition extends java.lang.Enum<GraphicPosition>
| Enum Constant and Description |
|---|
BACKGROUND_CORNER_BOTTOM_RIGHT |
BACKGROUND_CORNER_TOP_RIGHT |
BOTTOM |
| Modifier and Type | Method and Description |
|---|---|
static GraphicPosition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GraphicPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphicPosition BOTTOM
public static final GraphicPosition BACKGROUND_CORNER_BOTTOM_RIGHT
public static final GraphicPosition BACKGROUND_CORNER_TOP_RIGHT
public static GraphicPosition[] values()
for (GraphicPosition c : GraphicPosition.values()) System.out.println(c);
public static GraphicPosition 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