Package org.apache.lucene.document
Class LongDocValuesField
- java.lang.Object
 - 
- org.apache.lucene.document.Field
 - 
- org.apache.lucene.document.NumericDocValuesField
 - 
- org.apache.lucene.document.LongDocValuesField
 
 
 
 
- 
- All Implemented Interfaces:
 IndexableField
@Deprecated public class LongDocValuesField extends NumericDocValuesField
Deprecated.useNumericDocValuesFieldinstead.Field that stores a per-document
longvalue for scoring, sorting or value retrieval. Here's an example usage:document.add(new LongDocValuesField(name, 22L));
If you also need to store the value, you should add a separate
StoredFieldinstance.- See Also:
 NumericDocValues
 
- 
- 
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 LongDocValuesField(java.lang.String name, long value)Deprecated.Creates a new DocValues field with the specified 64-bit long value 
- 
Method Summary
- 
Methods inherited from class org.apache.lucene.document.Field
binaryValue, boost, fieldType, name, numericValue, readerValue, setBoost, setBytesValue, setBytesValue, setByteValue, setDoubleValue, setFloatValue, setIntValue, setLongValue, setReaderValue, setShortValue, setStringValue, setTokenStream, stringValue, tokenStream, tokenStreamValue, toString, translateFieldType 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
LongDocValuesField
public LongDocValuesField(java.lang.String name, long value)Deprecated.Creates a new DocValues field with the specified 64-bit long value- Parameters:
 name- field namevalue- 64-bit long value- Throws:
 java.lang.IllegalArgumentException- if the field name is null
 
 - 
 
 -