Uses of Class
org.apache.lucene.document.RangeFieldQuery.QueryType
-
Packages that use RangeFieldQuery.QueryType Package Description org.apache.lucene.document The logical representation of aDocumentfor indexing and searching. -
-
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.QueryTypeBinaryRangeFieldRangeQuery. queryType(package private) RangeFieldQuery.QueryTypeRangeFieldQuery. queryTypequery relation intersects:CELL_CROSSES_QUERY, contains:CELL_CONTAINS_QUERY, within:CELL_WITHIN_QUERYMethods in org.apache.lucene.document that return RangeFieldQuery.QueryType Modifier and Type Method Description static RangeFieldQuery.QueryTypeRangeFieldQuery.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 QueryLatLonBoundingBox. 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 queryprivate static QueryDoubleRange. newRelationQuery(java.lang.String field, double[] min, double[] max, RangeFieldQuery.QueryType relation)helper method for creating the desired relational queryprivate static QueryFloatRange. newRelationQuery(java.lang.String field, float[] min, float[] max, RangeFieldQuery.QueryType relation)helper method for creating the desired relational queryprivate static QueryInetAddressRange. 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 QueryIntRange. newRelationQuery(java.lang.String field, int[] min, int[] max, RangeFieldQuery.QueryType relation)helper method for creating the desired relational queryprivate static QueryLongRange. newRelationQuery(java.lang.String field, long[] min, long[] max, RangeFieldQuery.QueryType relation)helper method for creating the desired relational queryprivate static QueryDoubleRangeDocValuesField. newSlowRangeQuery(java.lang.String field, double[] min, double[] max, RangeFieldQuery.QueryType queryType)private static QueryFloatRangeDocValuesField. newSlowRangeQuery(java.lang.String field, float[] min, float[] max, RangeFieldQuery.QueryType queryType)private static QueryIntRangeDocValuesField. newSlowRangeQuery(java.lang.String field, int[] min, int[] max, RangeFieldQuery.QueryType queryType)private static QueryLongRangeDocValuesField. 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.
-