Uses of Class
org.apache.lucene.document.RangeFieldQuery.QueryType
-
Packages that use RangeFieldQuery.QueryType Package Description org.apache.lucene.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.sandbox.document This package contains several point types:BigIntegerPoint
for 128-bit integersLatLonPoint
for latitude/longitude geospatial points -
-
Uses of RangeFieldQuery.QueryType in org.apache.lucene.document
Fields in org.apache.lucene.document declared as RangeFieldQuery.QueryType Modifier and Type Field Description private RangeFieldQuery.QueryType
BinaryRangeFieldRangeQuery. queryType
(package private) RangeFieldQuery.QueryType
RangeFieldQuery. queryType
query relation intersects:CELL_CROSSES_QUERY
, contains:CELL_CONTAINS_QUERY
, within:CELL_WITHIN_QUERY
Methods in org.apache.lucene.document that return RangeFieldQuery.QueryType Modifier and Type Method Description static RangeFieldQuery.QueryType
RangeFieldQuery.QueryType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RangeFieldQuery.QueryType[]
RangeFieldQuery.QueryType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.lucene.document with parameters of type RangeFieldQuery.QueryType Modifier and Type Method Description private static Query
DoubleRange. newRelationQuery(java.lang.String field, double[] min, double[] max, RangeFieldQuery.QueryType relation)
helper method for creating the desired relational queryprivate static Query
FloatRange. newRelationQuery(java.lang.String field, float[] min, float[] max, RangeFieldQuery.QueryType relation)
helper method for creating the desired relational queryprivate static Query
InetAddressRange. newRelationQuery(java.lang.String field, java.net.InetAddress min, java.net.InetAddress max, RangeFieldQuery.QueryType relation)
helper method for creating the desired relational queryprivate static Query
IntRange. newRelationQuery(java.lang.String field, int[] min, int[] max, RangeFieldQuery.QueryType relation)
helper method for creating the desired relational queryprivate static Query
LongRange. newRelationQuery(java.lang.String field, long[] min, long[] max, RangeFieldQuery.QueryType relation)
helper method for creating the desired relational queryprivate static Query
DoubleRangeDocValuesField. newSlowRangeQuery(java.lang.String field, double[] min, double[] max, RangeFieldQuery.QueryType queryType)
private static Query
FloatRangeDocValuesField. newSlowRangeQuery(java.lang.String field, float[] min, float[] max, RangeFieldQuery.QueryType queryType)
private static Query
IntRangeDocValuesField. newSlowRangeQuery(java.lang.String field, int[] min, int[] max, RangeFieldQuery.QueryType queryType)
private static Query
LongRangeDocValuesField. newSlowRangeQuery(java.lang.String field, long[] min, long[] max, RangeFieldQuery.QueryType queryType)
Constructors in org.apache.lucene.document with parameters of type RangeFieldQuery.QueryType Constructor Description BinaryRangeFieldRangeQuery(java.lang.String field, byte[] queryPackedValue, int numBytesPerDimension, int numDims, RangeFieldQuery.QueryType queryType)
DoubleRangeSlowRangeQuery(java.lang.String field, double[] min, double[] max, RangeFieldQuery.QueryType queryType)
FloatRangeSlowRangeQuery(java.lang.String field, float[] min, float[] max, RangeFieldQuery.QueryType queryType)
IntRangeSlowRangeQuery(java.lang.String field, int[] min, int[] max, RangeFieldQuery.QueryType queryType)
LongRangeSlowRangeQuery(java.lang.String field, long[] min, long[] max, RangeFieldQuery.QueryType queryType)
RangeFieldQuery(java.lang.String field, byte[] ranges, int numDims, RangeFieldQuery.QueryType queryType)
Create a query for searching indexed ranges that match the provided relation. -
Uses of RangeFieldQuery.QueryType in org.apache.lucene.sandbox.document
Methods in org.apache.lucene.sandbox.document with parameters of type RangeFieldQuery.QueryType Modifier and Type Method Description private static Query
LatLonBoundingBox. newRangeQuery(java.lang.String field, double minLat, double minLon, double maxLat, double maxLon, RangeFieldQuery.QueryType queryType)
helper method to create a two-dimensional geospatial bounding box query
-