Enum RecategorizeMode

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

public enum RecategorizeMode extends Enum<RecategorizeMode> implements ValueEnum
Type for controlling when a "recategorize" is applied to records being dropped on a databound component from another databound component.
  • Enum Constant Details

    • ALWAYS

      public static final RecategorizeMode ALWAYS
      recategorize is always applied

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

    • CHECKED

      public static final RecategorizeMode CHECKED
      recategorize if normal checks pass

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

    • NEVER

      public static final RecategorizeMode NEVER
      never recategorize

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

  • Method Details

    • values

      public static RecategorizeMode[] 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 RecategorizeMode 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