Enum Class HorizontalAlignment
Enum Constant Summary
Enum Constants
Spedifies that the text should be centered.
Specifies that the horizontal alignment is centered across multiple cells.
Specifies that text should wrap and be aligned to form straight edges on the left and right, including the last line.
Specifies that the text will be repeated to fill the cell.
Specifies that text is left justified, numbers (including dates and times) are right justified, and logical values are centered.
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.
Spedifies left justification.
Spedifies right justification.
Method Summary
All Methods Static Methods Concrete Methods
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
General
Specifies that text is left justified, numbers (including dates and times) are right justified, and logical values are centered.
Left
Spedifies left justification.
Center
Spedifies that the text should be centered.
Right
Spedifies right justification.
Fill
Specifies that the text will be repeated to fill the cell.
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.
CenterContinuous
Specifies that the horizontal alignment is centered across multiple cells. The information about how many cells to span is expressed in the sheet part, in the row of the cell in question. For each cell that is spanned in the alignment, a cell element needs to be written out, with the same style Id which references the centerContinuous alignment.
Distributed
Specifies that text should wrap and be aligned to form straight edges on the left and right, including the last line.
Method Details
values
Returns an array containing the constants of this enum class, in
the order they are declared.
Returns:
an array containing the constants of this enum class, in the order they are declared
valueOf
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (Extraneous whitespace characters are
not permitted.)
Parameters:
name
- the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException
- if this enum class has no constant with the specified name
NullPointerException
- if the argument is null