Enum ExpansionComponentPoolingMode

java.lang.Object
java.lang.Enum<ExpansionComponentPoolingMode>
com.smartgwt.client.types.ExpansionComponentPoolingMode
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<ExpansionComponentPoolingMode>, Constable

public enum ExpansionComponentPoolingMode extends Enum<ExpansionComponentPoolingMode> implements ValueEnum
The method of pooling to employ for expansionComponents.

  • Enum Constant Details

    • DESTROY

      public static final ExpansionComponentPoolingMode DESTROY
      auto-created, built-in components are destroyed when record are collapsed.

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "destroy".

    • NONE

      public static final ExpansionComponentPoolingMode NONE
      all expansion components are deparented from the grid when a record is collapsed but are not destroyed. It is the responsibility of the developer to handle component destruction

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "none".

  • Method Details

    • values

      public static ExpansionComponentPoolingMode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ExpansionComponentPoolingMode 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
    • getValue

      public String getValue()
      Specified by:
      getValue in interface ValueEnum