Package | Description |
---|---|
org.apache.lucene.document |
The logical representation of a
Document for indexing and searching. |
org.apache.lucene.index |
Code to maintain and access indices.
|
Modifier and Type | Method and Description |
---|---|
DocValuesType |
FieldType.docValuesType()
DocValues
DocValuesType : how the field's value will be indexed
into docValues. |
Modifier and Type | Method and Description |
---|---|
void |
FieldType.setDocValuesType(DocValuesType type)
Sets the field's DocValuesType
|
Modifier and Type | Method and Description |
---|---|
DocValuesType |
IndexableFieldType.docValuesType()
DocValues
DocValuesType : how the field's value will be indexed
into docValues. |
DocValuesType |
FieldInfo.getDocValuesType()
Returns
DocValuesType of the docValues; this is
DocValuesType.NONE if the field has no docvalues. |
static DocValuesType |
DocValuesType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocValuesType[] |
DocValuesType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
FieldInfo.setDocValuesType(DocValuesType type)
Record that this field is indexed with docvalues, with the specified type
|
Constructor and Description |
---|
FieldInfo(String name,
int number,
boolean storeTermVector,
boolean omitNorms,
boolean storePayloads,
IndexOptions indexOptions,
DocValuesType docValues,
long dvGen,
Map<String,String> attributes,
int pointDimensionCount,
int pointNumBytes)
Sole constructor.
|
Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.