Enum Class Condition

java.lang.Object
java.lang.Enum<Condition>
io.deephaven.gui.table.filters.Condition
All Implemented Interfaces:
Serializable, Comparable<Condition>, java.lang.constant.Constable

public enum Condition extends Enum<Condition>
The set of Conditions that can be used with various filters.
  • Enum Constant Details

    • EQUALS

      public static final Condition EQUALS
    • NOT_EQUALS

      public static final Condition NOT_EQUALS
    • INCLUDES

      public static final Condition INCLUDES
    • NOT_INCLUDES

      public static final Condition NOT_INCLUDES
    • EQUALS_MATCH_CASE

      public static final Condition EQUALS_MATCH_CASE
    • NOT_EQUALS_MATCH_CASE

      public static final Condition NOT_EQUALS_MATCH_CASE
    • INCLUDES_MATCH_CASE

      public static final Condition INCLUDES_MATCH_CASE
    • NOT_INCLUDES_MATCH_CASE

      public static final Condition NOT_INCLUDES_MATCH_CASE
    • LESS_THAN

      public static final Condition LESS_THAN
    • GREATER_THAN

      public static final Condition GREATER_THAN
    • LESS_THAN_OR_EQUAL

      public static final Condition LESS_THAN_OR_EQUAL
    • GREATER_THAN_OR_EQUAL

      public static final Condition GREATER_THAN_OR_EQUAL
    • EQUALS_ABS

      public static final Condition EQUALS_ABS
    • NOT_EQUALS_ABS

      public static final Condition NOT_EQUALS_ABS
    • LESS_THAN_ABS

      public static final Condition LESS_THAN_ABS
    • GREATER_THAN_ABS

      public static final Condition GREATER_THAN_ABS
    • INCLUDED_IN

      public static final Condition INCLUDED_IN
    • INCLUDED_IN_MATCH_CASE

      public static final Condition INCLUDED_IN_MATCH_CASE
    • NOT_INCLUDED_IN

      public static final Condition NOT_INCLUDED_IN
    • NOT_INCLUDED_IN_MATCH_CASE

      public static final Condition NOT_INCLUDED_IN_MATCH_CASE
  • Field Details

    • description

      public final String description
    • defaultOr

      public final boolean defaultOr
  • Method Details

    • values

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

      public static Condition valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • mirror

      public Condition mirror()