public final class VerticalAlignment extends Object
Enumeration of possible vertical alignment values.
Modifier and Type | Field and Description |
---|---|
static int |
Bottom
Align to bottom.
|
static int |
Center
Center alignment.
|
static int |
None
No alignment (use specified position).
|
static int |
Top
Align to top.
|
Modifier and Type | Method and Description |
---|---|
static int |
parse(String value)
Parses a string to a
enumeration value. |
static String |
toString(int value)
Returns a string representation of the
value. |
public static final int None
No alignment (use specified position).
public static final int Top
Align to top.
public static final int Center
Center alignment.
public static final int Bottom
Align to bottom.
public static final String toString(int value)
Returns a string representation of the
value.
VerticalAlignment
value
- The value to convert.VerticalAlignment
value.public static final int parse(String value)
Parses a string to a
enumeration value.
VerticalAlignment
value
- The string to parse.VerticalAlignment
enumeration value.