Package org.apache.poi.xssf.usermodel
Enum Class TextDirection
- All Implemented Interfaces:
Serializable
,Comparable<TextDirection>
,Constable
Vertical Text Types
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionHorizontal text.Determines if all of the text is vertical ("one letter on top of another").Vertical orientation.Vertical orientation. -
Method Summary
Modifier and TypeMethodDescriptionstatic TextDirection
Returns the enum constant of this class with the specified name.static TextDirection[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HORIZONTAL
Horizontal text. This should be default. -
VERTICAL
Vertical orientation. (each line is 90 degrees rotated clockwise, so it goes from top to bottom; each next line is to the left from the previous one). -
VERTICAL_270
Vertical orientation. (each line is 270 degrees rotated clockwise, so it goes from bottom to top; each next line is to the right from the previous one). -
STACKED
Determines if all of the text is vertical ("one letter on top of another").
-
-
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 nameNullPointerException
- if the argument is null
-