Package org.apache.lucene.document
Class ShortDocValuesField
- java.lang.Object
 - 
- org.apache.lucene.document.Field
 - 
- org.apache.lucene.document.NumericDocValuesField
 - 
- org.apache.lucene.document.ShortDocValuesField
 
 
 
 
- 
- All Implemented Interfaces:
 IndexableField
@Deprecated public class ShortDocValuesField extends NumericDocValuesField
Deprecated.useNumericDocValuesFieldinstead.Field that stores a per-document
shortvalue for scoring, sorting or value retrieval. Here's an example usage:document.add(new ShortDocValuesField(name, (short) 22));
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 ShortDocValuesField(java.lang.String name, short value)Deprecated.Creates a new DocValues field with the specified 16-bit short value 
- 
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidsetShortValue(short value)Deprecated.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, setFloatValue, setIntValue, setLongValue, setReaderValue, setStringValue, setTokenStream, stringValue, tokenStream, tokenStreamValue, toString, translateFieldType 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
ShortDocValuesField
public ShortDocValuesField(java.lang.String name, short value)Deprecated.Creates a new DocValues field with the specified 16-bit short value- Parameters:
 name- field namevalue- 16-bit short value- Throws:
 java.lang.IllegalArgumentException- if the field name is null
 
 - 
 
- 
Method Detail
- 
setShortValue
public void setShortValue(short value)
Deprecated.Description copied from class:FieldExpert: change the value of this field. SeeField.setStringValue(String).- Overrides:
 setShortValuein classField
 
 - 
 
 -