public enum EndPointAnchor extends Enum<EndPointAnchor>
| Enum Constant and Description | 
|---|
| ASSIGN | 
| AUTO_DEFAULT | 
| BOTTOM | 
| BOTTOM_LEFT | 
| BOTTOM_RIGHT | 
| CENTER | 
| CONTINUOUS | 
| CONTINUOUS_BOTTOM | 
| CONTINUOUS_LEFT | 
| CONTINUOUS_RIGHT | 
| CONTINUOUS_TOP | 
| LEFT | 
| PERIMETER | 
| RIGHT | 
| TOP | 
| TOP_LEFT | 
| TOP_RIGHT | 
| Modifier and Type | Method and Description | 
|---|---|
| String | toString() | 
| static EndPointAnchor | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static EndPointAnchor[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final EndPointAnchor ASSIGN
public static final EndPointAnchor AUTO_DEFAULT
public static final EndPointAnchor BOTTOM
public static final EndPointAnchor BOTTOM_LEFT
public static final EndPointAnchor BOTTOM_RIGHT
public static final EndPointAnchor CENTER
public static final EndPointAnchor CONTINUOUS
public static final EndPointAnchor CONTINUOUS_LEFT
public static final EndPointAnchor CONTINUOUS_RIGHT
public static final EndPointAnchor CONTINUOUS_TOP
public static final EndPointAnchor CONTINUOUS_BOTTOM
public static final EndPointAnchor LEFT
public static final EndPointAnchor PERIMETER
public static final EndPointAnchor RIGHT
public static final EndPointAnchor TOP
public static final EndPointAnchor TOP_LEFT
public static final EndPointAnchor TOP_RIGHT
public static EndPointAnchor[] values()
for (EndPointAnchor c : EndPointAnchor.values()) System.out.println(c);
public static EndPointAnchor 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 nullpublic String toString()
toString in class Enum<EndPointAnchor>Copyright © 2020. All rights reserved.