public static enum Enums.StackPolicy extends java.lang.Enum<Enums.StackPolicy>
Enum Constant and Description |
---|
ABOVE
Stack figures above the other figures that share the same coordinates.
|
BELOW
Stack figures below the other figures that share the same coordinates.
|
HCENTER
Stack figures horizontally that share the same coordinates and center them on the common coordinate.
|
LEFT
Stack figures to the left of other figures that share the same coordinates.
|
RIGHT
Stack figures to the right of other figures that share the same coordinates.
|
VCENTER
Stack figures vertically that share the same coordinates and center them on the common coordinate.
|
Modifier and Type | Method and Description |
---|---|
static Enums.StackPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Enums.StackPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enums.StackPolicy ABOVE
public static final Enums.StackPolicy BELOW
public static final Enums.StackPolicy LEFT
public static final Enums.StackPolicy RIGHT
public static final Enums.StackPolicy VCENTER
public static final Enums.StackPolicy HCENTER
public static Enums.StackPolicy[] values()
for (Enums.StackPolicy c : Enums.StackPolicy.values()) System.out.println(c);
public static Enums.StackPolicy 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