public enum RectAlign extends java.lang.Enum<RectAlign>
STRectAlignment| Enum Constant and Description | 
|---|
| BOTTOMBottom rectangle alignment | 
| BOTTOM_LEFTBottom-Left rectangle alignment | 
| BOTTOM_RIGHTBottom-Right rectangle alignment | 
| CENTERCenter rectangle alignment | 
| LEFTLeft rectangle alignment | 
| RIGHTRight rectangle alignment | 
| TOPTop rectangle alignment | 
| TOP_LEFTTop-Left rectangle alignment | 
| TOP_RIGHTTop-Right rectangle alignment | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | toString()The string representation,
 which corresponds to the internal XML enum value | 
| static RectAlign | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static RectAlign[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RectAlign TOP_LEFT
public static final RectAlign TOP
public static final RectAlign TOP_RIGHT
public static final RectAlign LEFT
public static final RectAlign CENTER
public static final RectAlign RIGHT
public static final RectAlign BOTTOM_LEFT
public static final RectAlign BOTTOM
public static final RectAlign BOTTOM_RIGHT
public static RectAlign[] values()
for (RectAlign c : RectAlign.values()) System.out.println(c);
public static RectAlign 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<RectAlign>Copyright 2018 The Apache Software Foundation or its licensors, as applicable.