Enum SheetAction

    • Enum Constant Detail

      • first

        public static final SheetAction first
        First page is requested
      • prev

        public static final SheetAction prev
        Previous page is requested
      • next

        public static final SheetAction next
        Next page is requested
      • last

        public static final SheetAction last
        Last page is requested
      • toRow

        public static final SheetAction toRow
        A specified row is requested
      • toPage

        public static final SheetAction toPage
        A specified page is requested
      • lazy

        public static final SheetAction lazy
        A lazy load is requested
    • Method Detail

      • values

        public static SheetAction[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SheetAction c : SheetAction.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SheetAction valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null
      • getBundleKey

        public String getBundleKey()