public enum VerticalAlignment extends java.lang.Enum<VerticalAlignment>
| Enum Constant and Description |
|---|
Bottom
Specifies that text is placed at the bottom.
|
Center
Specifies that text is vertically centered.
|
Distributed
Specifies that rotated text should wrap and be aligned to form straight edges on the left and right, including the last line.
|
Justify
Specifies that rotated text is vertically justified.
|
Top
Specifies that text is placed at the top.
|
| Modifier and Type | Method and Description |
|---|---|
static VerticalAlignment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VerticalAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerticalAlignment Top
public static final VerticalAlignment Center
public static final VerticalAlignment Bottom
public static final VerticalAlignment Justify
public static final VerticalAlignment Distributed
public static VerticalAlignment[] values()
for (VerticalAlignment c : VerticalAlignment.values()) System.out.println(c);
public static VerticalAlignment 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 null