Uses of Enum
org.apache.lucene.index.FieldInfo.IndexOptions
Packages that use FieldInfo.IndexOptions
Package
Description
Codecs API: API for customization of the encoding and structure of the index.
The logical representation of a
Document
for indexing and searching.Code to maintain and access indices.
-
Uses of FieldInfo.IndexOptions in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs with parameters of type FieldInfo.IndexOptionsModifier and TypeMethodDescriptionPostingsConsumer.merge
(MergeState mergeState, FieldInfo.IndexOptions indexOptions, DocsEnum postings, FixedBitSet visitedDocs) Default merge impl: append documents, mapping around deletesvoid
TermsConsumer.merge
(MergeState mergeState, FieldInfo.IndexOptions indexOptions, TermsEnum termsEnum) Default merge impl -
Uses of FieldInfo.IndexOptions in org.apache.lucene.document
Methods in org.apache.lucene.document that return FieldInfo.IndexOptionsModifier and TypeMethodDescriptionFieldType.indexOptions()
FieldInfo.IndexOptions
, describing what should be recorded into the inverted indexMethods in org.apache.lucene.document with parameters of type FieldInfo.IndexOptionsModifier and TypeMethodDescriptionvoid
FieldType.setIndexOptions
(FieldInfo.IndexOptions value) Sets the indexing options for the field: -
Uses of FieldInfo.IndexOptions in org.apache.lucene.index
Methods in org.apache.lucene.index that return FieldInfo.IndexOptionsModifier and TypeMethodDescriptionFieldInfo.getIndexOptions()
Returns IndexOptions for the field, or null if the field is not indexedIndexableFieldType.indexOptions()
FieldInfo.IndexOptions
, describing what should be recorded into the inverted indexstatic FieldInfo.IndexOptions
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.Constructors in org.apache.lucene.index with parameters of type FieldInfo.IndexOptionsModifierConstructorDescriptionFieldInfo
(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.