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