Enum Class Worksheet.SheetViewType

java.lang.Object
java.lang.Enum<Worksheet.SheetViewType>
ch.rabanti.nanoxlsx4j.Worksheet.SheetViewType
All Implemented Interfaces:
Serializable, Comparable<Worksheet.SheetViewType>, Constable
Enclosing class:
Worksheet

public static enum Worksheet.SheetViewType extends Enum<Worksheet.SheetViewType>
Enum to define how a worksheet is displayed in the spreadsheet application (Excel)
  • Enum Constant Details

    • normal

      public static final Worksheet.SheetViewType normal
      The worksheet is displayed without pagination (default)
    • pageBreakPreview

      public static final Worksheet.SheetViewType pageBreakPreview
      The worksheet is displayed with indicators where the page would break if it were printed
    • pageLayout

      public static final Worksheet.SheetViewType pageLayout
      The worksheet is displayed like it would be printed
  • Method Details

    • values

      public static Worksheet.SheetViewType[] 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

      public static Worksheet.SheetViewType valueOf(String name)
      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