Enum ValueItemType

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

public enum ValueItemType extends Enum<ValueItemType> implements ValueEnum
Enum used within the FilterBuilder class to indicate the role of a particular value-field form item within a filter clause.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Indicates this item will generate the higher-bound value (or "end") when generating criteria with Operator.valueType "valueRange".
    This is the single form item that will populate the generated Criterion.value for Operator.valueType of "fieldName".
    Indicates this item will generate the lower-bound value (or "start") when generating criteria with Operator.valueType "valueRange".
    This is the single form item that will populate the generated Criterion.value for this clause.
  • Method Summary

    Modifier and Type
    Method
    Description
     
    Returns the enum constant of this type with the specified name.
    static ValueItemType[]
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • VALUE

      public static final ValueItemType VALUE
      This is the single form item that will populate the generated Criterion.value for this clause. This applies for operators with Operator.valueType of "fieldType" or "custom".

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

    • NAME

      public static final ValueItemType NAME
      This is the single form item that will populate the generated Criterion.value for Operator.valueType of "fieldName".

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

    • START

      public static final ValueItemType START
      Indicates this item will generate the lower-bound value (or "start") when generating criteria with Operator.valueType "valueRange".

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

    • END

      public static final ValueItemType END
      Indicates this item will generate the higher-bound value (or "end") when generating criteria with Operator.valueType "valueRange".

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

  • Method Details

    • values

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