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 |
---|---|
FieldInfo.DocValuesType |
FieldType.docValueType()
DocValues
FieldInfo.DocValuesType : if non-null then the field's value
will be indexed into docValues. |
Modifier and Type | Method and Description |
---|---|
void |
FieldType.setDocValueType(FieldInfo.DocValuesType type)
Set's the field's DocValuesType
|
Modifier and Type | Method and Description |
---|---|
FieldInfo.DocValuesType |
IndexableFieldType.docValueType()
DocValues
FieldInfo.DocValuesType : if non-null then the field's value
will be indexed into docValues. |
FieldInfo.DocValuesType |
FieldInfo.getDocValuesType()
Returns
FieldInfo.DocValuesType of the docValues. |
FieldInfo.DocValuesType |
FieldInfo.getNormType()
Returns
FieldInfo.DocValuesType of the norm. |
static FieldInfo.DocValuesType |
FieldInfo.DocValuesType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldInfo.DocValuesType[] |
FieldInfo.DocValuesType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Constructor and Description |
---|
FieldInfo(String name,
boolean indexed,
int number,
boolean storeTermVector,
boolean omitNorms,
boolean storePayloads,
FieldInfo.IndexOptions indexOptions,
FieldInfo.DocValuesType docValues,
FieldInfo.DocValuesType normsType,
Map<String,String> attributes)
Sole Constructor.
|
Copyright © 2000-2013 Apache Software Foundation. All Rights Reserved.