Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
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 |
---|---|
TermStats |
PostingsConsumer.merge(MergeState mergeState,
FieldInfo.IndexOptions indexOptions,
DocsEnum postings,
FixedBitSet visitedDocs)
Default merge impl: append documents, mapping around
deletes
|
void |
TermsConsumer.merge(MergeState mergeState,
FieldInfo.IndexOptions indexOptions,
TermsEnum termsEnum)
Default merge impl
|
Modifier and Type | Method and Description |
---|---|
FieldInfo.IndexOptions |
FieldType.indexOptions()
FieldInfo.IndexOptions , describing what should be
recorded into the inverted index |
Modifier and Type | Method and Description |
---|---|
void |
FieldType.setIndexOptions(FieldInfo.IndexOptions value)
Sets the indexing options for the field:
|
Modifier and Type | Method and Description |
---|---|
FieldInfo.IndexOptions |
FieldInfo.getIndexOptions()
Returns IndexOptions for the field, or null if the field is not indexed
|
FieldInfo.IndexOptions |
IndexableFieldType.indexOptions()
FieldInfo.IndexOptions , describing what should be
recorded into the inverted index |
static FieldInfo.IndexOptions |
FieldInfo.IndexOptions.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldInfo.IndexOptions[] |
FieldInfo.IndexOptions.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-2014 Apache Software Foundation. All Rights Reserved.