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.Index, Field.Store, Field.TermVector
Modifier and Type | Field and Description |
---|---|
static FieldType |
TYPE
Type for straight bytes DocValues.
|
boost, fieldsData, name, tokenStream, type
Constructor and Description |
---|
BinaryDocValuesField(String name,
BytesRef value)
Create a new binary 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 BinaryDocValuesField(String name, BytesRef value)
name
- field namevalue
- binary contentIllegalArgumentException
- if the field name is nullCopyright © 2000-2014 Apache Software Foundation. All Rights Reserved.