public class BinaryDocValuesField extends Field
BytesRef
value.
The values are stored directly with no sharing, which is a good fit when
the fields don't share (many) values, such as a title field. If values
may be shared and sorted it's better to use SortedDocValuesField
.
Here's an example usage:
document.add(new BinaryDocValuesField(name, new BytesRef("hello")));
If you also need to store the value, you should add a
separate StoredField
instance.
BinaryDocValues
Field.Store
Modifier and Type | Field and Description |
---|---|
static FieldType |
TYPE
Type for straight bytes DocValues.
|
fieldsData, name, tokenStream, type
Constructor and Description |
---|
BinaryDocValuesField(String name,
BytesRef value)
Create a new binary DocValues field.
|
binaryValue, fieldType, getCharSequenceValue, name, numericValue, readerValue, setBytesValue, setBytesValue, setByteValue, setDoubleValue, setFloatValue, setIntValue, setLongValue, setReaderValue, setShortValue, setStringValue, setTokenStream, stringValue, tokenStream, tokenStreamValue, toString
public static final FieldType TYPE
public BinaryDocValuesField(String name, BytesRef value)
name
- field namevalue
- binary contentIllegalArgumentException
- if the field name is nullCopyright © 2000-2021 Apache Software Foundation. All Rights Reserved.