Enum Operator

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Operator>

    public enum Operator
    extends java.lang.Enum<Operator>
    • Method Summary

      All Methods Static Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      int getValue()  
      boolean isContains()
      Checks if this operator is CONTAINS operator.
      boolean isContainsKey()
      Checks if this operator is CONTAINS KEY operator.
      boolean isIN()
      Checks if this operator is an IN operator.
      abstract boolean isSatisfiedBy​(AbstractType<?> type, java.nio.ByteBuffer leftOperand, java.nio.ByteBuffer rightOperand)
      Whether 2 values satisfy this operator (given the type they should be compared with).
      boolean isSlice()
      Checks if this operator is a slice operator.
      static Operator readFrom​(java.io.DataInput input)
      Deserializes a Operator instance from the specified input.
      int serializedSize()  
      java.lang.String toString()  
      static Operator valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static Operator[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      void writeTo​(java.io.DataOutput output)
      Write the serialized version of this Operator to the specified output.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
      • Methods inherited from class java.lang.Object

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

      • CONTAINS

        public static final Operator CONTAINS
      • CONTAINS_KEY

        public static final Operator CONTAINS_KEY
      • IS_NOT

        public static final Operator IS_NOT
      • LIKE_PREFIX

        public static final Operator LIKE_PREFIX
      • LIKE_SUFFIX

        public static final Operator LIKE_SUFFIX
      • LIKE_CONTAINS

        public static final Operator LIKE_CONTAINS
      • LIKE_MATCHES

        public static final Operator LIKE_MATCHES
      • LIKE

        public static final Operator LIKE
    • Method Detail

      • values

        public static Operator[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Operator c : Operator.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Operator valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • writeTo

        public void writeTo​(java.io.DataOutput output)
                     throws java.io.IOException
        Write the serialized version of this Operator to the specified output.
        Parameters:
        output - the output to write to
        Throws:
        java.io.IOException - if an I/O problem occurs while writing to the specified output
      • getValue

        public int getValue()
      • readFrom

        public static Operator readFrom​(java.io.DataInput input)
                                 throws java.io.IOException
        Deserializes a Operator instance from the specified input.
        Parameters:
        input - the input to read from
        Returns:
        the Operator instance deserialized
        Throws:
        java.io.IOException - if a problem occurs while deserializing the Type instance.
      • isSatisfiedBy

        public abstract boolean isSatisfiedBy​(AbstractType<?> type,
                                              java.nio.ByteBuffer leftOperand,
                                              java.nio.ByteBuffer rightOperand)
        Whether 2 values satisfy this operator (given the type they should be compared with).
      • serializedSize

        public int serializedSize()
      • isSlice

        public boolean isSlice()
        Checks if this operator is a slice operator.
        Returns:
        true if this operator is a slice operator, false otherwise.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<Operator>
      • isIN

        public boolean isIN()
        Checks if this operator is an IN operator.
        Returns:
        true if this operator is an IN operator, false otherwise.
      • isContains

        public boolean isContains()
        Checks if this operator is CONTAINS operator.
        Returns:
        true if this operator is a CONTAINS operator, false otherwise.
      • isContainsKey

        public boolean isContainsKey()
        Checks if this operator is CONTAINS KEY operator.
        Returns:
        true if this operator is a CONTAINS operator, false otherwise.