Uses of Class
org.apache.lucene.index.IndexOptions
-
Packages that use IndexOptions Package Description org.apache.lucene.backward_codecs.lucene60 Lucene 6.0 file format.org.apache.lucene.backward_codecs.lucene90 Lucene 9.0 file format.org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene94 Lucene 9.4 file format.org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.index Code to maintain and access indices. -
-
Uses of IndexOptions in org.apache.lucene.backward_codecs.lucene60
Methods in org.apache.lucene.backward_codecs.lucene60 that return IndexOptions Modifier and Type Method Description private static IndexOptions
Lucene60FieldInfosFormat. getIndexOptions(IndexInput input, byte b)
Methods in org.apache.lucene.backward_codecs.lucene60 with parameters of type IndexOptions Modifier and Type Method Description private static byte
Lucene60FieldInfosFormat. indexOptionsByte(IndexOptions indexOptions)
-
Uses of IndexOptions in org.apache.lucene.backward_codecs.lucene90
Methods in org.apache.lucene.backward_codecs.lucene90 that return IndexOptions Modifier and Type Method Description private static IndexOptions
Lucene90FieldInfosFormat. getIndexOptions(IndexInput input, byte b)
Methods in org.apache.lucene.backward_codecs.lucene90 with parameters of type IndexOptions Modifier and Type Method Description private static byte
Lucene90FieldInfosFormat. indexOptionsByte(IndexOptions indexOptions)
-
Uses of IndexOptions in org.apache.lucene.codecs
Fields in org.apache.lucene.codecs declared as IndexOptions Modifier and Type Field Description protected IndexOptions
PushPostingsWriterBase. indexOptions
IndexOptions
of current field being written -
Uses of IndexOptions in org.apache.lucene.codecs.lucene94
Methods in org.apache.lucene.codecs.lucene94 that return IndexOptions Modifier and Type Method Description private static IndexOptions
Lucene94FieldInfosFormat. getIndexOptions(IndexInput input, byte b)
Methods in org.apache.lucene.codecs.lucene94 with parameters of type IndexOptions Modifier and Type Method Description private static byte
Lucene94FieldInfosFormat. indexOptionsByte(IndexOptions indexOptions)
-
Uses of IndexOptions in org.apache.lucene.codecs.simpletext
Fields in org.apache.lucene.codecs.simpletext declared as IndexOptions Modifier and Type Field Description private IndexOptions
SimpleTextFieldsReader.SimpleTextTermsEnum. indexOptions
Methods in org.apache.lucene.codecs.simpletext with parameters of type IndexOptions Modifier and Type Method Description SimpleTextFieldsReader.SimpleTextPostingsEnum
SimpleTextFieldsReader.SimpleTextPostingsEnum. reset(long fp, IndexOptions indexOptions, int docFreq, long skipPointer)
Constructors in org.apache.lucene.codecs.simpletext with parameters of type IndexOptions Constructor Description SimpleTextTermsEnum(FST<PairOutputs.Pair<PairOutputs.Pair<java.lang.Long,java.lang.Long>,PairOutputs.Pair<java.lang.Long,java.lang.Long>>> fst, IndexOptions indexOptions)
-
Uses of IndexOptions in org.apache.lucene.document
Fields in org.apache.lucene.document declared as IndexOptions Modifier and Type Field Description private IndexOptions
FieldType. indexOptions
Methods in org.apache.lucene.document that return IndexOptions Modifier and Type Method Description IndexOptions
FieldType. 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 void
FieldType. setIndexOptions(IndexOptions value)
Sets the indexing options for the field: -
Uses of IndexOptions in org.apache.lucene.index
Fields in org.apache.lucene.index declared as IndexOptions Modifier and Type Field Description private IndexOptions
FieldInfo. indexOptions
(package private) IndexOptions
FieldInvertState. indexOptions
private IndexOptions
FreqProxTermsWriter.SortingTerms. indexOptions
private IndexOptions
FreqProxTermsWriter.SortingTermsEnum. indexOptions
private IndexOptions
IndexingChain.FieldSchema. indexOptions
(package private) IndexOptions
TermsHashPerField. indexOptions
Fields in org.apache.lucene.index with type parameters of type IndexOptions Modifier and Type Field Description private java.util.Map<java.lang.String,IndexOptions>
FieldInfos.FieldNumbers. indexOptions
Methods in org.apache.lucene.index that return IndexOptions Modifier and Type Method Description IndexOptions
FieldInfo. getIndexOptions()
Returns IndexOptions for the field, or IndexOptions.NONE if the field is not indexedIndexOptions
FieldInvertState. getIndexOptions()
Get the index options for this fieldIndexOptions
IndexableFieldType. indexOptions()
IndexOptions
, describing what should be recorded into the inverted indexstatic IndexOptions
IndexOptions. valueOf(java.lang.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 (package private) void
IndexingChain.FieldSchema. setIndexOptions(IndexOptions newIndexOptions, boolean newOmitNorms, boolean newStoreTermVector)
(package private) static void
FieldInfo. verifySameIndexOptions(java.lang.String fieldName, IndexOptions indexOptions1, IndexOptions indexOptions2, boolean strictlyConsistent)
Verify that the provided index options are the sameConstructors in org.apache.lucene.index with parameters of type IndexOptions Constructor Description FieldInfo(java.lang.String name, int number, boolean storeTermVector, boolean omitNorms, boolean storePayloads, IndexOptions indexOptions, DocValuesType docValues, long dvGen, java.util.Map<java.lang.String,java.lang.String> attributes, int pointDimensionCount, int pointIndexDimensionCount, int pointNumBytes, int vectorDimension, VectorEncoding vectorEncoding, VectorSimilarityFunction vectorSimilarityFunction, boolean softDeletesField, boolean isParentField)
Sole constructor.FieldInvertState(int indexCreatedVersionMajor, java.lang.String name, IndexOptions indexOptions)
Creates {code FieldInvertState} for the specified field name.FieldInvertState(int indexCreatedVersionMajor, java.lang.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.SortingTerms(Terms in, IndexOptions indexOptions, Sorter.DocMap docMap)
SortingTermsEnum(TermsEnum in, Sorter.DocMap docMap, IndexOptions indexOptions)
TermsHashPerField(int streamCount, IntBlockPool intPool, ByteBlockPool bytePool, ByteBlockPool termBytePool, Counter bytesUsed, TermsHashPerField nextPerField, java.lang.String fieldName, IndexOptions indexOptions)
streamCount: how many streams this field stores per term.
-