Uses of Class
org.apache.lucene.index.IndexOptions
- 
Packages that use IndexOptions 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 aDocumentfor indexing and searching.org.apache.lucene.index Code to maintain and access indices.
- 
- 
Uses of IndexOptions in org.apache.lucene.codecsFields in org.apache.lucene.codecs declared as IndexOptions Modifier and Type Field Description protected IndexOptionsPushPostingsWriterBase. indexOptionsIndexOptionsof current field being written
- 
Uses of IndexOptions in org.apache.lucene.documentMethods in org.apache.lucene.document that return IndexOptions Modifier and Type Method Description IndexOptionsFieldType. indexOptions()IndexOptions, describing what should be recorded into the inverted indexMethods in org.apache.lucene.document with parameters of type IndexOptions Modifier and Type Method Description voidFieldType. setIndexOptions(IndexOptions value)Sets the indexing options for the field:
- 
Uses of IndexOptions in org.apache.lucene.indexMethods in org.apache.lucene.index that return IndexOptions Modifier and Type Method Description IndexOptionsFieldInfo. getIndexOptions()Returns IndexOptions for the field, or IndexOptions.NONE if the field is not indexedIndexOptionsFieldInvertState. getIndexOptions()Get the index options for this fieldIndexOptionsIndexableFieldType. indexOptions()IndexOptions, describing what should be recorded into the inverted indexstatic IndexOptionsIndexOptions. valueOf(String name)Returns the enum constant of this type with the specified name.static IndexOptions[]IndexOptions. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.lucene.index with parameters of type IndexOptions Modifier and Type Method Description voidFieldInfo. setIndexOptions(IndexOptions newIndexOptions)Record theIndexOptionsto use with this field.Constructors in org.apache.lucene.index with parameters of type IndexOptions Constructor Description FieldInfo(String name, int number, boolean storeTermVector, boolean omitNorms, boolean storePayloads, IndexOptions indexOptions, DocValuesType docValues, long dvGen, Map<String,String> attributes, int pointDataDimensionCount, int pointIndexDimensionCount, int pointNumBytes, boolean softDeletesField)Sole constructor.FieldInvertState(int indexCreatedVersionMajor, String name, IndexOptions indexOptions)Creates {code FieldInvertState} for the specified field name.FieldInvertState(int indexCreatedVersionMajor, String name, IndexOptions indexOptions, int position, int length, int numOverlap, int offset, int maxTermFrequency, int uniqueTermCount)Creates {code FieldInvertState} for the specified field name and values for all fields.
 
-