Uses of Enum Class
org.apache.lucene.document.RangeFieldQuery.QueryType
Packages that use RangeFieldQuery.QueryType
Package
Description
The logical representation of a
Document for indexing and
searching.This package contains several point types:
BigIntegerPoint for 128-bit
integers
LatLonPoint for latitude/longitude
geospatial points
-
Uses of RangeFieldQuery.QueryType in org.apache.lucene.document
Fields in org.apache.lucene.document declared as RangeFieldQuery.QueryTypeModifier and TypeFieldDescriptionprivate final RangeFieldQuery.QueryTypeBinaryRangeFieldRangeQuery.queryType(package private) final RangeFieldQuery.QueryTypeRangeFieldQuery.queryTypequery relation intersects:CELL_CROSSES_QUERY, contains:CELL_CONTAINS_QUERY, within:CELL_WITHIN_QUERYMethods in org.apache.lucene.document that return RangeFieldQuery.QueryTypeModifier and TypeMethodDescriptionstatic RangeFieldQuery.QueryTypeReturns the enum constant of this class with the specified name.static RangeFieldQuery.QueryType[]RangeFieldQuery.QueryType.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.apache.lucene.document with parameters of type RangeFieldQuery.QueryTypeModifier and TypeMethodDescriptionprivate static QueryDoubleRange.newRelationQuery(String field, double[] min, double[] max, RangeFieldQuery.QueryType relation) helper method for creating the desired relational queryprivate static QueryFloatRange.newRelationQuery(String field, float[] min, float[] max, RangeFieldQuery.QueryType relation) helper method for creating the desired relational queryprivate static QueryInetAddressRange.newRelationQuery(String field, InetAddress min, InetAddress max, RangeFieldQuery.QueryType relation) helper method for creating the desired relational queryprivate static QueryIntRange.newRelationQuery(String field, int[] min, int[] max, RangeFieldQuery.QueryType relation) helper method for creating the desired relational queryprivate static QueryLongRange.newRelationQuery(String field, long[] min, long[] max, RangeFieldQuery.QueryType relation) helper method for creating the desired relational queryprivate static QueryDoubleRangeDocValuesField.newSlowRangeQuery(String field, double[] min, double[] max, RangeFieldQuery.QueryType queryType) private static QueryFloatRangeDocValuesField.newSlowRangeQuery(String field, float[] min, float[] max, RangeFieldQuery.QueryType queryType) private static QueryIntRangeDocValuesField.newSlowRangeQuery(String field, int[] min, int[] max, RangeFieldQuery.QueryType queryType) private static QueryLongRangeDocValuesField.newSlowRangeQuery(String field, long[] min, long[] max, RangeFieldQuery.QueryType queryType) Constructors in org.apache.lucene.document with parameters of type RangeFieldQuery.QueryTypeModifierConstructorDescription(package private)BinaryRangeFieldRangeQuery(String field, byte[] queryPackedValue, int numBytesPerDimension, int numDims, RangeFieldQuery.QueryType queryType) (package private)DoubleRangeSlowRangeQuery(String field, double[] min, double[] max, RangeFieldQuery.QueryType queryType) (package private)FloatRangeSlowRangeQuery(String field, float[] min, float[] max, RangeFieldQuery.QueryType queryType) (package private)IntRangeSlowRangeQuery(String field, int[] min, int[] max, RangeFieldQuery.QueryType queryType) (package private)LongRangeSlowRangeQuery(String field, long[] min, long[] max, RangeFieldQuery.QueryType queryType) protectedRangeFieldQuery(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.QueryTypeModifier and TypeMethodDescriptionprivate static QueryLatLonBoundingBox.newRangeQuery(String field, double minLat, double minLon, double maxLat, double maxLon, RangeFieldQuery.QueryType queryType) helper method to create a two-dimensional geospatial bounding box query