public enum GraphicPosition extends Enum<GraphicPosition>
| Enum Constant and Description |
|---|
BACKGROUND_CORNER_BOTTOM_RIGHT |
BACKGROUND_CORNER_TOP_RIGHT |
BOTTOM |
| Modifier and Type | Method and Description |
|---|---|
static GraphicPosition |
valueOf(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(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 nullCopyright © 2017. All rights reserved.