|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<RectAlign> org.apache.poi.sl.usermodel.RectAlign
public enum RectAlign
Specifies possible rectangle alignment types. See org.openxmlformats.schemas.drawingml.x2006.main.STRectAlignment
STRectAlignment
Enum Constant Summary | |
---|---|
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 |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<RectAlign>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |