Enum Class RangeFieldQuery.QueryType

java.lang.Object
java.lang.Enum<RangeFieldQuery.QueryType>
org.apache.lucene.document.RangeFieldQuery.QueryType
All Implemented Interfaces:
Serializable, Comparable<RangeFieldQuery.QueryType>, Constable
Enclosing class:
RangeFieldQuery

public static enum RangeFieldQuery.QueryType extends Enum<RangeFieldQuery.QueryType>
Used by RangeFieldQuery to check how each internal or leaf node relates to the query.
  • Enum Constant Details

  • Constructor Details

    • QueryType

      private QueryType()
  • Method Details

    • values

      public static RangeFieldQuery.QueryType[] 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 RangeFieldQuery.QueryType 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
    • compare

      abstract PointValues.Relation compare(byte[] queryPackedValue, byte[] minPackedValue, byte[] maxPackedValue, int numDims, int bytesPerDim, int dim, ArrayUtil.ByteArrayComparator comparator)
    • compare

      PointValues.Relation compare(byte[] queryPackedValue, byte[] minPackedValue, byte[] maxPackedValue, int numDims, int bytesPerDim, ArrayUtil.ByteArrayComparator comparator)
    • matches

      abstract boolean matches(byte[] queryPackedValue, byte[] packedValue, int numDims, int bytesPerDim, int dim, ArrayUtil.ByteArrayComparator comparator)
    • matches

      public boolean matches(byte[] queryPackedValue, byte[] packedValue, int numDims, int bytesPerDim, ArrayUtil.ByteArrayComparator comparator)
      Compares every dim for 2 encoded ranges and returns true if all dims match. Matching implementation is based on the QueryType.