Module org.apache.lucene.core
Package org.apache.lucene.document
Enum Class RangeFieldQuery.QueryType
- All Implemented Interfaces:
Serializable
,Comparable<RangeFieldQuery.QueryType>
,Constable
- Enclosing class:
- RangeFieldQuery
Used by
RangeFieldQuery
to check how each internal or leaf node relates to the query.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUse this for containsUse this for crosses queriesUse this for intersects queries.Use this for within queries. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) abstract PointValues.Relation
compare
(byte[] queryPackedValue, byte[] minPackedValue, byte[] maxPackedValue, int numDims, int bytesPerDim, int dim, ArrayUtil.ByteArrayComparator comparator) (package private) PointValues.Relation
compare
(byte[] queryPackedValue, byte[] minPackedValue, byte[] maxPackedValue, int numDims, int bytesPerDim, ArrayUtil.ByteArrayComparator comparator) (package private) abstract boolean
matches
(byte[] queryPackedValue, byte[] packedValue, int numDims, int bytesPerDim, int dim, ArrayUtil.ByteArrayComparator comparator) 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.static RangeFieldQuery.QueryType
Returns the enum constant of this class with the specified name.static RangeFieldQuery.QueryType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INTERSECTS
Use this for intersects queries. -
WITHIN
Use this for within queries. -
CONTAINS
Use this for contains -
CROSSES
Use this for crosses queries
-
-
Constructor Details
-
QueryType
private QueryType()
-
-
Method Details
-
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
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 nameNullPointerException
- 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.
-