public class SortedDocValuesField extends Field
Field that stores
a per-document BytesRef
value, indexed for
sorting. Here's an example usage:
document.add(new SortedDocValuesField(name, new BytesRef("hello")));
If you also need to store the value, you should add a
separate StoredField
instance.
Field.Index, Field.Store, Field.TermVector
Modifier and Type | Field and Description |
---|---|
static FieldType |
TYPE
Type for sorted bytes DocValues
|
boost, fieldsData, name, tokenStream, type
Constructor and Description |
---|
SortedDocValuesField(String name,
BytesRef bytes)
Create a new sorted DocValues field.
|
binaryValue, boost, fieldType, name, numericValue, readerValue, setBoost, setBytesValue, setBytesValue, setByteValue, setDoubleValue, setFloatValue, setIntValue, setLongValue, setReaderValue, setShortValue, setStringValue, setTokenStream, stringValue, tokenStream, tokenStreamValue, toString, translateFieldType
public static final FieldType TYPE
public SortedDocValuesField(String name, BytesRef bytes)
name
- field namebytes
- binary contentIllegalArgumentException
- if the field name is nullCopyright © 2000-2015 Apache Software Foundation. All Rights Reserved.