Enum Class ITableFilter.Op

java.lang.Object
java.lang.Enum<ITableFilter.Op>
com.iizix.prop.ui.table.ITableFilter.Op
All Implemented Interfaces:
Serializable, Comparable<ITableFilter.Op>, Constable
Enclosing interface:
ITableFilter<ROW,ROW_CELL>

public static enum ITableFilter.Op extends Enum<ITableFilter.Op>
Filtering option enum.
  • Enum Constant Details

    • CONTAINS

      public static final ITableFilter.Op CONTAINS
      Filtering text is contained in a cell string.
    • STARTS_WITH

      public static final ITableFilter.Op STARTS_WITH
      Cell string starts with filtering text.
    • WILDCARD

      public static final ITableFilter.Op WILDCARD
      Cell string matches the wildcard string that uses "*?^" and Windows wildcards.
    • EXACT

      public static final ITableFilter.Op EXACT
      Cell string must match exactly the filtering text.
  • Method Details

    • values

      public static ITableFilter.Op[] 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 ITableFilter.Op 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