Package ch.rabanti.nanoxlsx4j
Enum Class Worksheet.CellDirection
- All Implemented Interfaces:
Serializable
,Comparable<Worksheet.CellDirection>
,Constable
- Enclosing class:
- Worksheet
Enum to define the direction when using AddNextCell method
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe next cell will be on the same row (A1,B1,C1...)The address of the next cell will be not changed when adding a cell (for manual definition of cell addresses)The next cell will be on the same column (A1,A2,A3...) -
Method Summary
Modifier and TypeMethodDescriptionstatic Worksheet.CellDirection
Returns the enum constant of this class with the specified name.static Worksheet.CellDirection[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ColumnToColumn
The next cell will be on the same row (A1,B1,C1...) -
RowToRow
The next cell will be on the same column (A1,A2,A3...) -
Disabled
The address of the next cell will be not changed when adding a cell (for manual definition of cell addresses)
-
-
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
-