Enum Operator

java.lang.Object
java.lang.Enum<Operator>
pl.databucket.client.Operator
All Implemented Interfaces:
Serializable, Comparable<Operator>, java.lang.constant.Constable

public enum Operator
extends Enum<Operator>
  • Enum Constant Details

    • equal

      public static final Operator equal
    • grater

      public static final Operator grater
    • graterEqual

      public static final Operator graterEqual
    • notIn

      public static final Operator notIn
    • in

      public static final Operator in
    • less

      public static final Operator less
    • lessEqual

      public static final Operator lessEqual
    • notEqual

      public static final Operator notEqual
    • like

      public static final Operator like
    • notLike

      public static final Operator notLike
    • similar

      public static final Operator similar
    • notSimilar

      public static final Operator notSimilar
    • matchCaseSensitive

      public static final Operator matchCaseSensitive
    • matchCaseInsensitive

      public static final Operator matchCaseInsensitive
    • notMatchCaseSensitive

      public static final Operator notMatchCaseSensitive
    • notMatchCaseInsensitive

      public static final Operator notMatchCaseInsensitive
  • Method Details

    • values

      public static Operator[] 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 Operator 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Operator>