public enum AllAnchors extends Enum<AllAnchors> implements AppParentConstraint
| Enum Constant and Description |
|---|
BOTTOM |
BOTTOM_LEFT |
BOTTOM_RIGHT |
CENTER |
LEFT |
RIGHT |
TOP |
TOP_LEFT |
TOP_RIGHT |
| Modifier and Type | Method and Description |
|---|---|
static AllAnchors |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AllAnchors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AllAnchors TOP
public static final AllAnchors TOP_LEFT
public static final AllAnchors TOP_RIGHT
public static final AllAnchors BOTTOM
public static final AllAnchors BOTTOM_LEFT
public static final AllAnchors BOTTOM_RIGHT
public static final AllAnchors LEFT
public static final AllAnchors RIGHT
public static final AllAnchors CENTER
public static AllAnchors[] values()
for (AllAnchors c : AllAnchors.values()) System.out.println(c);
public static AllAnchors 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 © 2021 vpc open source initiative. All rights reserved.