- All Implemented Interfaces:
IndexableField
half-float field for fast range filters. If you also need to store the value,
you should add a separate StoredField instance. If you need doc values, you can store
them in a NumericDocValuesField and use halfFloatToSortableShort(float) and sortableShortToHalfFloat(short) for encoding/decoding.
The API takes floats, but they will be encoded to half-floats before being indexed. In case the provided floats cannot be represented accurately as a half float, they will be rounded to the closest value that can be represented as a half float. In case of tie, values will be rounded to the value that has a zero as its least significant bit.
Finding all documents within an N-dimensional 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, float)for matching an exact 1D point.newSetQuery(String, float...)for matching a set of 1D values.newRangeQuery(String, float, float)for matching a 1D range.newRangeQuery(String, float[], float[])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
FieldsModifier and TypeFieldDescriptionstatic final intThe number of bytes used to represent a half-float value.Fields inherited from class org.apache.lucene.document.Field
fieldsData, name, tokenStream, type -
Constructor Summary
ConstructorsConstructorDescriptionHalfFloatPoint(String name, float... point) Creates a new FloatPoint, indexing the provided N-dimensional float point. -
Method Summary
Modifier and TypeMethodDescriptionstatic floatdecodeDimension(byte[] value, int offset) Decode single float dimensionstatic voidencodeDimension(float value, byte[] dest, int offset) Encode single float dimensionprivate static FieldTypegetType(int numDims) (package private) static shorthalfFloatToShortBits(float v) static shorthalfFloatToSortableShort(float v) Convert a half-float to a short value that maintains ordering.static QuerynewExactQuery(String field, float value) Create a query for matching an exact half-float value.static QuerynewRangeQuery(String field, float[] lowerValue, float[] upperValue) Create a range query for n-dimensional half-float values.static QuerynewRangeQuery(String field, float lowerValue, float upperValue) Create a range query for half-float values.static QuerynewSetQuery(String field, float... values) Create a query matching any of the specified 1D values.static QuerynewSetQuery(String field, Collection<Float> values) Create a query matching any of the specified 1D values.static floatnextDown(float v) Return the first half float which is immediately smaller thanv.static floatnextUp(float v) Return the first half float which is immediately greater thanv.Non-null if this field has a numeric valueprivate static BytesRefpack(float... point) (package private) static introundShift(int i, int shift) voidsetBytesValue(BytesRef bytes) Expert: change the value of this field.voidsetFloatValue(float value) Expert: change the value of this field.voidsetFloatValues(float... point) Change the values of this field(package private) static floatshortBitsToHalfFloat(short s) (package private) static voidshortToSortableBytes(short value, byte[] result, int offset) (package private) static shortsortableBytesToShort(byte[] encoded, int offset) private static shortsortableShortBits(short s) static floatsortableShortToHalfFloat(short bits) Convert short bits to a half-float value that maintains ordering.toString()Prints a Field for human consumption.Methods inherited from class org.apache.lucene.document.Field
binaryValue, fieldType, getCharSequenceValue, invertableType, name, readerValue, setBytesValue, setByteValue, setDoubleValue, setIntValue, setLongValue, setReaderValue, setShortValue, setStringValue, setTokenStream, storedValue, stringValue, tokenStream, tokenStreamValue
-
Field Details
-
BYTES
public static final int BYTESThe number of bytes used to represent a half-float value.- See Also:
-
-
Constructor Details
-
HalfFloatPoint
Creates a new FloatPoint, indexing the provided N-dimensional float point.- Parameters:
name- field namepoint- float[] value- Throws:
IllegalArgumentException- if the field name or value is null.
-
-
Method Details
-
nextUp
public static float nextUp(float v) Return the first half float which is immediately greater thanv. If the argument isFloat.NaNthen the return value isFloat.NaN. If the argument isFloat.POSITIVE_INFINITYthen the return value isFloat.POSITIVE_INFINITY. -
nextDown
public static float nextDown(float v) Return the first half float which is immediately smaller thanv. If the argument isFloat.NaNthen the return value isFloat.NaN. If the argument isFloat.NEGATIVE_INFINITYthen the return value isFloat.NEGATIVE_INFINITY. -
halfFloatToSortableShort
public static short halfFloatToSortableShort(float v) Convert a half-float to a short value that maintains ordering. -
sortableShortToHalfFloat
public static float sortableShortToHalfFloat(short bits) Convert short bits to a half-float value that maintains ordering. -
sortableShortBits
private static short sortableShortBits(short s) -
halfFloatToShortBits
static short halfFloatToShortBits(float v) -
roundShift
static int roundShift(int i, int shift) -
shortBitsToHalfFloat
static float shortBitsToHalfFloat(short s) -
shortToSortableBytes
static void shortToSortableBytes(short value, byte[] result, int offset) -
sortableBytesToShort
static short sortableBytesToShort(byte[] encoded, int offset) -
getType
-
setFloatValue
public void setFloatValue(float value) Description copied from class:FieldExpert: change the value of this field. SeeField.setStringValue(String).- Overrides:
setFloatValuein classField
-
setFloatValues
public void setFloatValues(float... point) Change the values of this field -
setBytesValue
Description copied from class:FieldExpert: change the value of this field. SeeField.setStringValue(String).NOTE: the provided BytesRef is not copied so be sure not to change it until you're done with this field.
- Overrides:
setBytesValuein classField
-
numericValue
Description copied from interface:IndexableFieldNon-null if this field has a numeric value- Specified by:
numericValuein interfaceIndexableField- Overrides:
numericValuein classField
-
pack
-
toString
Description copied from class:FieldPrints a Field for human consumption. -
encodeDimension
public static void encodeDimension(float value, byte[] dest, int offset) Encode single float dimension -
decodeDimension
public static float decodeDimension(byte[] value, int offset) Decode single float dimension -
newExactQuery
Create a query for matching an exact half-float value. It will be rounded to the closest half-float ifvaluecannot be represented accurately as a half-float.This is for simple one-dimension points, for multidimensional points use
newRangeQuery(String, float[], float[])instead.- Parameters:
field- field name. must not benull.value- half-float value- Returns:
- a query matching documents with this exact value
- Throws:
IllegalArgumentException- iffieldis null.
-
newRangeQuery
Create a range query for half-float values. Bounds will be rounded to the closest half-float if they cannot be represented accurately as a half-float.This is for simple one-dimension ranges, for multidimensional ranges use
newRangeQuery(String, float[], float[])instead.You can have half-open ranges (which are in fact </≤ or >/≥ queries) by setting
lowerValue = Float.NEGATIVE_INFINITYorupperValue = Float.POSITIVE_INFINITY.Ranges are inclusive. For exclusive ranges, pass
nextUp(lowerValue)ornextDown(upperValue).Range comparisons are consistent with
Float.compareTo(Float).- Parameters:
field- field name. must not benull.lowerValue- lower portion of the range (inclusive).upperValue- upper portion of the range (inclusive).- Returns:
- a query matching documents within this range.
- Throws:
IllegalArgumentException- iffieldis null.
-
newRangeQuery
Create a range query for n-dimensional half-float values. Bounds will be rounded to the closest half-float if they cannot be represented accurately as a half-float.You can have half-open ranges (which are in fact </≤ or >/≥ queries) by setting
lowerValue[i] = Float.NEGATIVE_INFINITYorupperValue[i] = Float.POSITIVE_INFINITY.Ranges are inclusive. For exclusive ranges, pass
nextUp(lowerValue[i])ornextDown(upperValue[i]).Range comparisons are consistent with
Float.compareTo(Float).- Parameters:
field- field name. must not benull.lowerValue- lower portion of the range (inclusive). must not benull.upperValue- upper portion of the range (inclusive). must not benull.- 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. Values will be rounded to the closest half-float if they cannot be represented accurately as a half-float.- Parameters:
field- field name. must not benull.values- all values to match
-
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
-