Package org.apache.lucene.document
Class FloatDocValuesField
- java.lang.Object
 - 
- org.apache.lucene.document.Field
 - 
- org.apache.lucene.document.NumericDocValuesField
 - 
- org.apache.lucene.document.FloatDocValuesField
 
 
 
 
- 
- All Implemented Interfaces:
 IndexableField
public class FloatDocValuesField extends NumericDocValuesField
Syntactic sugar for encoding floats as NumericDocValues viaFloat.floatToRawIntBits(float).Per-document floating point values can be retrieved via
FieldCache.getFloats(AtomicReader, String, boolean).NOTE: In most all cases this will be rather inefficient, requiring four bytes per document. Consider encoding floating point values yourself with only as much precision as you require.
 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from class org.apache.lucene.document.Field
Field.Index, Field.Store, Field.TermVector 
 - 
 
- 
Field Summary
- 
Fields inherited from class org.apache.lucene.document.NumericDocValuesField
TYPE 
 - 
 
- 
Constructor Summary
Constructors Constructor Description FloatDocValuesField(java.lang.String name, float value)Creates a new DocValues field with the specified 32-bit float value 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsetFloatValue(float value)Expert: change the value of this field.voidsetLongValue(long value)Expert: change the value of this field.- 
Methods inherited from class org.apache.lucene.document.Field
binaryValue, boost, fieldType, name, numericValue, readerValue, setBoost, setBytesValue, setBytesValue, setByteValue, setDoubleValue, setIntValue, setReaderValue, setShortValue, setStringValue, setTokenStream, stringValue, tokenStream, tokenStreamValue, toString, translateFieldType 
 - 
 
 - 
 
- 
- 
Method Detail
- 
setFloatValue
public void setFloatValue(float value)
Description copied from class:FieldExpert: change the value of this field. SeeField.setStringValue(String).- Overrides:
 setFloatValuein classField
 
- 
setLongValue
public void setLongValue(long value)
Description copied from class:FieldExpert: change the value of this field. SeeField.setStringValue(String).- Overrides:
 setLongValuein classField
 
 - 
 
 -