Package ch.rabanti.nanoxlsx4j
Enum Class Worksheet.SheetViewType
- All Implemented Interfaces:
Serializable
,Comparable<Worksheet.SheetViewType>
,Constable
- Enclosing class:
- Worksheet
Enum to define how a worksheet is displayed in the spreadsheet application (Excel)
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe worksheet is displayed without pagination (default)The worksheet is displayed with indicators where the page would break if it were printedThe worksheet is displayed like it would be printed -
Method Summary
Modifier and TypeMethodDescriptionstatic Worksheet.SheetViewType
Returns the enum constant of this class with the specified name.static Worksheet.SheetViewType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
normal
The worksheet is displayed without pagination (default) -
pageBreakPreview
The worksheet is displayed with indicators where the page would break if it were printed -
pageLayout
The worksheet is displayed like it would be printed
-
-
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
-