Uses of Class
org.apache.lucene.index.FieldInfo.IndexOptions

Packages that use FieldInfo.IndexOptions
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. 
 

Uses of FieldInfo.IndexOptions in org.apache.lucene.codecs
 

Methods in org.apache.lucene.codecs with parameters of type FieldInfo.IndexOptions
 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
 

Uses of FieldInfo.IndexOptions in org.apache.lucene.document
 

Methods in org.apache.lucene.document that return FieldInfo.IndexOptions
 FieldInfo.IndexOptions FieldType.indexOptions()
          FieldInfo.IndexOptions, describing what should be recorded into the inverted index
 

Methods in org.apache.lucene.document with parameters of type FieldInfo.IndexOptions
 void 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.IndexOptions
 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.
 

Constructors in org.apache.lucene.index with parameters of type FieldInfo.IndexOptions
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.