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