public enum Anchor extends Enum<Anchor> implements Key
| Enum Constant and Description | 
|---|
| CENTERThis is the default. | 
| ENDHighest element boundary | 
| STARTLowest element boundary | 
| Modifier and Type | Method and Description | 
|---|---|
| String | value()Returns the name value of property | 
| static Anchor | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Anchor[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfcheckIfValid, compare, create, equals, getKeyByValue, getKeyByValue, hasKeyByValue, isValidpublic static final Anchor CENTER
public static final Anchor START
public static final Anchor END
public static Anchor[] values()
for (Anchor c : Anchor.values()) System.out.println(c);
public static Anchor 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 null