java.lang.Object
com.aquima.interactions.foundation.connectivity.Operator
All Implemented Interfaces:
Serializable

public final class Operator extends Object implements Serializable
Enumerated type class containing the possible comparison types for input values.
Since:
6.3
Author:
O. Kerpershoek
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final Operator
    This member defines the equals operator.
    static final Operator
    This member defines the greater-than operator.
    static final Operator
    This member defines the greater-than-equals operator.
    static final Operator
    This member defines the like operator.
    static final Operator
    This member defines the lower-than operator.
    static final Operator
    This member defines the lower-than-equals operator.
    static final Operator
    This member defines the not-equals operator.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    This method returns the type (name) of the input operator.
    int
     
     
    static Operator
    This method returns the input operator for the specified name.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • EQ

      public static final Operator EQ
      This member defines the equals operator.
    • GT

      public static final Operator GT
      This member defines the greater-than operator.
    • LT

      public static final Operator LT
      This member defines the lower-than operator.
    • GTE

      public static final Operator GTE
      This member defines the greater-than-equals operator.
    • LTE

      public static final Operator LTE
      This member defines the lower-than-equals operator.
    • NE

      public static final Operator NE
      This member defines the not-equals operator.
    • LIKE

      public static final Operator LIKE
      This member defines the like operator.
  • Method Details

    • valueOf

      public static Operator valueOf(String str)
      This method returns the input operator for the specified name.
      Parameters:
      str - The name of the requested input operator.
      Returns:
      The input operator for the specified name.
    • getType

      public String getType()
      This method returns the type (name) of the input operator.
      Returns:
      the type (name) of the input operator.
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object