public enum HorizontalAlignment extends java.lang.Enum<HorizontalAlignment>
| Enum Constant and Description |
|---|
Center
Spedifies that the text should be centered.
|
CenterContinuous
Specifies that the horizontal alignment is centered across multiple
cells.
|
Distributed
Specifies that text should wrap and be aligned to form straight edges on the left and right, including the last line.
|
Fill
Specifies that the text will be repeated to fill the cell.
|
General
Specifies that text is left justified, numbers (including dates and times) are right justified, and logical values are centered.
|
Justify
Specifies that text should wrap and be aligned to form straight edges on the left and right, except for the last line which is left justified.
|
Left
Spedifies left justification.
|
Right
Spedifies right justification.
|
| Modifier and Type | Method and Description |
|---|---|
static HorizontalAlignment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HorizontalAlignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HorizontalAlignment General
public static final HorizontalAlignment Left
public static final HorizontalAlignment Center
public static final HorizontalAlignment Right
public static final HorizontalAlignment Fill
public static final HorizontalAlignment Justify
public static final HorizontalAlignment CenterContinuous
public static final HorizontalAlignment Distributed
public static HorizontalAlignment[] values()
for (HorizontalAlignment c : HorizontalAlignment.values()) System.out.println(c);
public static HorizontalAlignment 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