java.lang.Object
org.apache.lucene.document.Field
org.apache.lucene.document.BinaryPoint
- All Implemented Interfaces:
IndexableField
An indexed binary field for fast range filters. If you also need to store the value, you should
add a separate
StoredField instance.
Finding all documents within an N-dimensional shape or range at search time is efficient. Multiple values for the same field in one document is allowed.
This field defines static factory methods for creating common queries:
newExactQuery(String, byte[])for matching an exact 1D point.newSetQuery(String, byte[]...)for matching a set of 1D values.newRangeQuery(String, byte[], byte[])for matching a 1D range.newRangeQuery(String, byte[][], byte[][])for matching points/ranges in n-dimensional space.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.document.Field
Field.Store -
Field Summary
Fields inherited from class org.apache.lucene.document.Field
fieldsData, name, tokenStream, type -
Constructor Summary
ConstructorsConstructorDescriptionBinaryPoint(String name, byte[]... point) General purpose API: creates a new BinaryPoint, indexing the provided N-dimensional binary point.BinaryPoint(String name, byte[] packedPoint, IndexableFieldType type) Expert API -
Method Summary
Modifier and TypeMethodDescriptionprivate static FieldTypegetType(byte[][] point) private static FieldTypegetType(int numDims, int bytesPerDim) static QuerynewExactQuery(String field, byte[] value) Create a query for matching an exact binary value.static QuerynewRangeQuery(String field, byte[][] lowerValue, byte[][] upperValue) Create a range query for n-dimensional binary values.static QuerynewRangeQuery(String field, byte[] lowerValue, byte[] upperValue) Create a range query for binary values.static QuerynewSetQuery(String field, byte[]... values) Create a query matching any of the specified 1D values.private static BytesRefpack(byte[]... point) Methods inherited from class org.apache.lucene.document.Field
binaryValue, fieldType, getCharSequenceValue, invertableType, name, numericValue, readerValue, setBytesValue, setBytesValue, setByteValue, setDoubleValue, setFloatValue, setIntValue, setLongValue, setReaderValue, setShortValue, setStringValue, setTokenStream, storedValue, stringValue, tokenStream, tokenStreamValue, toString
-
Constructor Details
-
BinaryPoint
General purpose API: creates a new BinaryPoint, indexing the provided N-dimensional binary point.- Parameters:
name- field namepoint- byte[][] value- Throws:
IllegalArgumentException- if the field name or value is null.
-
BinaryPoint
Expert API
-
-
Method Details
-
getType
-
getType
-
pack
-
newExactQuery
Create a query for matching an exact binary value.This is for simple one-dimension points, for multidimensional points use
newRangeQuery(String, byte[][], byte[][])instead.- Parameters:
field- field name. must not benull.value- binary value- Returns:
- a query matching documents with this exact value
- Throws:
IllegalArgumentException- iffieldis null orvalueis null
-
newRangeQuery
Create a range query for binary values.This is for simple one-dimension ranges, for multidimensional ranges use
newRangeQuery(String, byte[][], byte[][])instead.- Parameters:
field- field name. must not benull.lowerValue- lower portion of the range (inclusive). must not benullupperValue- upper portion of the range (inclusive). must not benull- Returns:
- a query matching documents within this range.
- Throws:
IllegalArgumentException- iffieldis null, iflowerValueis null, or ifupperValueis null
-
newRangeQuery
Create a range query for n-dimensional binary values.- Parameters:
field- field name. must not benull.lowerValue- lower portion of the range (inclusive). must not be null.upperValue- upper portion of the range (inclusive). must not be null.- Returns:
- a query matching documents within this range.
- Throws:
IllegalArgumentException- iffieldis null, iflowerValueis null, ifupperValueis null, or iflowerValue.length != upperValue.length
-
newSetQuery
Create a query matching any of the specified 1D values. This is the points equivalent ofTermsQuery.- Parameters:
field- field name. must not benull.values- all values to match
-