Enum WDataTable.PaginationMode

    • Enum Constant Detail

      • NONE

        public static final WDataTable.PaginationMode NONE
        Indicates that pagination is not supported, all data will be displayed in the one page.
      • SERVER

        public static final WDataTable.PaginationMode SERVER
        Deprecated.
        use PaginationMode.DYNAMIC instead.
        Indicates that pagination occurs using a round-trip to the server (no longer implemented). NOTE: no longer supported in theme as it causes an a11y failure. Setting this mode will, in effect, set PaginationMode.DYNAMIC.
      • CLIENT

        public static final WDataTable.PaginationMode CLIENT
        Indicates that pagination occurs on the client. All data will be sent at once.
      • DYNAMIC

        public static final WDataTable.PaginationMode DYNAMIC
        Indicates that pagination occurs via AJAX calls to the server.
    • Method Detail

      • values

        public static WDataTable.PaginationMode[] 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 (WDataTable.PaginationMode c : WDataTable.PaginationMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static WDataTable.PaginationMode 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