Enum WDataTable.ExpandMode

    • Enum Constant Detail

      • CLIENT

        public static final WDataTable.ExpandMode CLIENT
        Indicates that row expansion occurs on the client.
      • SERVER

        public static final WDataTable.ExpandMode SERVER
        Deprecated.
        use ExpandMode.DYNAMIC instead.
        Indicates that row expansion occurs on the server (round-trip).
      • LAZY

        public static final WDataTable.ExpandMode LAZY
        Indicates that row expansion occurs once, via AJAX.
      • DYNAMIC

        public static final WDataTable.ExpandMode DYNAMIC
        Indicates that row expansion should make an AJAX call every time.
    • Method Detail

      • values

        public static WDataTable.ExpandMode[] 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.ExpandMode c : WDataTable.ExpandMode.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.ExpandMode 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