Package org.apache.lucene.document
Class DoubleField
- java.lang.Object
-
- org.apache.lucene.document.Field
-
- org.apache.lucene.document.DoubleField
-
- All Implemented Interfaces:
IndexableField
public final class DoubleField extends Field
Field that stores a per-documentdouble
value for scoring, sorting or value retrieval and index the field for fast range filters. If you need more fine-grained control you can useDoublePoint
,DoubleDocValuesField
andStoredField
.This field defines static factory methods for creating common queries:
newExactQuery(String, double)
for matching an exact 1D point.newRangeQuery(String, double, double)
for matching a 1D range.newSetQuery(String, double...)
for matching a 1D set.
- See Also:
PointValues
-
-
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
Constructors Constructor Description DoubleField(String name, double value)
Deprecated.UseDoubleField(String, double, Field.Store)
withField.Store.NO
instead.DoubleField(String name, double value, Field.Store stored)
Creates a new DoubleField, indexing the provided point, storing it as a DocValue, and optionally storing it as a stored field.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BytesRef
binaryValue()
Non-null if this field has a binary valuestatic Query
newExactQuery(String field, double value)
Create a query for matching an exact double value.static Query
newRangeQuery(String field, double lowerValue, double upperValue)
Create a range query for double values.static Query
newSetQuery(String field, double... values)
Create a query matching values in a supplied setstatic SortField
newSortField(String field, boolean reverse, SortedNumericSelector.Type selector)
Create a newSortField
for double values.void
setDoubleValue(double value)
Expert: change the value of this field.void
setLongValue(long value)
Expert: change the value of this field.StoredValue
storedValue()
Stored value.String
toString()
Prints a Field for human consumption.-
Methods inherited from class org.apache.lucene.document.Field
fieldType, getCharSequenceValue, invertableType, name, numericValue, readerValue, setBytesValue, setBytesValue, setByteValue, setFloatValue, setIntValue, setReaderValue, setShortValue, setStringValue, setTokenStream, stringValue, tokenStream, tokenStreamValue
-
-
-
-
Constructor Detail
-
DoubleField
@Deprecated public DoubleField(String name, double value)
Deprecated.UseDoubleField(String, double, Field.Store)
withField.Store.NO
instead.Creates a new DoubleField, indexing the provided point and storing it as a DocValue- Parameters:
name
- field namevalue
- the double value- Throws:
IllegalArgumentException
- if the field name or value is null.
-
DoubleField
public DoubleField(String name, double value, Field.Store stored)
Creates a new DoubleField, indexing the provided point, storing it as a DocValue, and optionally storing it as a stored field.- Parameters:
name
- field namevalue
- the double valuestored
- whether to store the field- Throws:
IllegalArgumentException
- if the field name or value is null.
-
-
Method Detail
-
binaryValue
public BytesRef binaryValue()
Description copied from interface:IndexableField
Non-null if this field has a binary value- Specified by:
binaryValue
in interfaceIndexableField
- Overrides:
binaryValue
in classField
-
storedValue
public StoredValue storedValue()
Description copied from interface:IndexableField
Stored value. This method is called to populate stored fields and must return a non-null value if the field stored.- Specified by:
storedValue
in interfaceIndexableField
- Overrides:
storedValue
in classField
-
toString
public String toString()
Description copied from class:Field
Prints a Field for human consumption.
-
setDoubleValue
public void setDoubleValue(double value)
Description copied from class:Field
Expert: change the value of this field. SeeField.setStringValue(String)
.- Overrides:
setDoubleValue
in classField
-
setLongValue
public void setLongValue(long value)
Description copied from class:Field
Expert: change the value of this field. SeeField.setStringValue(String)
.- Overrides:
setLongValue
in classField
-
newExactQuery
public static Query newExactQuery(String field, double value)
Create a query for matching an exact double value.- Parameters:
field
- field name. must not benull
.value
- exact value- Returns:
- a query matching documents with this exact value
- Throws:
IllegalArgumentException
- iffield
is null.
-
newRangeQuery
public static Query newRangeQuery(String field, double lowerValue, double upperValue)
Create a range query for double values.You can have half-open ranges (which are in fact </≤ or >/≥ queries) by setting
lowerValue = Double.NEGATIVE_INFINITY
orupperValue = Double.POSITIVE_INFINITY
.Range comparisons are consistent with
Double.compareTo(Double)
.- 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
- iffield
is null.
-
newSetQuery
public static Query newSetQuery(String field, double... values)
Create a query matching values in a supplied set- Parameters:
field
- field name. must not benull
.values
- double values- Returns:
- a query matching documents within this set.
- Throws:
IllegalArgumentException
- iffield
is null.
-
newSortField
public static SortField newSortField(String field, boolean reverse, SortedNumericSelector.Type selector)
Create a newSortField
for double values.- Parameters:
field
- field name. must not benull
.reverse
- true if natural order should be reversed.selector
- custom selector type for choosing the sort value from the set.
-
-