public enum RectAlign extends java.lang.Enum<RectAlign>
STRectAlignment
Enum Constant and Description |
---|
BOTTOM
Bottom rectangle alignment
|
BOTTOM_LEFT
Bottom-Left rectangle alignment
|
BOTTOM_RIGHT
Bottom-Right rectangle alignment
|
CENTER
Center rectangle alignment
|
LEFT
Left rectangle alignment
|
RIGHT
Right rectangle alignment
|
TOP
Top rectangle alignment
|
TOP_LEFT
Top-Left rectangle alignment
|
TOP_RIGHT
Top-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 2020 The Apache Software Foundation or its licensors, as applicable.