Uses of Class
org.apache.lucene.codecs.Codec
-
Packages that use Codec Package Description org.apache.lucene.backward_codecs.lucene70 Components from the Lucene 7.0 index format.org.apache.lucene.backward_codecs.lucene80 Components from the Lucene 8.0 index format.org.apache.lucene.backward_codecs.lucene84 Lucene 8.4 file format.org.apache.lucene.backward_codecs.lucene86 Lucene 8.6 file format.org.apache.lucene.backward_codecs.lucene87 Lucene 8.7 file format.org.apache.lucene.backward_codecs.lucene90 Lucene 9.0 file format.org.apache.lucene.backward_codecs.lucene91 Lucene 9.1 file format.org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene92 Lucene 9.2 file format.org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.index Code to maintain and access indices. -
-
Uses of Codec in org.apache.lucene.backward_codecs.lucene70
Subclasses of Codec in org.apache.lucene.backward_codecs.lucene70 Modifier and Type Class Description classLucene70CodecImplements the Lucene 7.0 index format, with configurable per-field postings and docvalues formats. -
Uses of Codec in org.apache.lucene.backward_codecs.lucene80
Subclasses of Codec in org.apache.lucene.backward_codecs.lucene80 Modifier and Type Class Description classLucene80CodecImplements the Lucene 8.0 index format. -
Uses of Codec in org.apache.lucene.backward_codecs.lucene84
Subclasses of Codec in org.apache.lucene.backward_codecs.lucene84 Modifier and Type Class Description classLucene84CodecImplements the Lucene 8.4 index format, with configurable per-field postings and docvalues formats. -
Uses of Codec in org.apache.lucene.backward_codecs.lucene86
Subclasses of Codec in org.apache.lucene.backward_codecs.lucene86 Modifier and Type Class Description classLucene86CodecImplements the Lucene 8.6 index format, with configurable per-field postings and docvalues formats. -
Uses of Codec in org.apache.lucene.backward_codecs.lucene87
Subclasses of Codec in org.apache.lucene.backward_codecs.lucene87 Modifier and Type Class Description classLucene87CodecImplements the Lucene 8.6 index format, with configurable per-field postings and docvalues formats. -
Uses of Codec in org.apache.lucene.backward_codecs.lucene90
Subclasses of Codec in org.apache.lucene.backward_codecs.lucene90 Modifier and Type Class Description classLucene90CodecImplements the Lucene 9.0 index format -
Uses of Codec in org.apache.lucene.backward_codecs.lucene91
Subclasses of Codec in org.apache.lucene.backward_codecs.lucene91 Modifier and Type Class Description classLucene91CodecImplements the Lucene 9.1 index format -
Uses of Codec in org.apache.lucene.codecs
Subclasses of Codec in org.apache.lucene.codecs Modifier and Type Class Description classFilterCodecA codec that forwards all its method calls to another codec.Fields in org.apache.lucene.codecs declared as Codec Modifier and Type Field Description (package private) static CodecCodec.Holder. defaultCodecprotected CodecFilterCodec. delegateThe codec to filter.Fields in org.apache.lucene.codecs with type parameters of type Codec Modifier and Type Field Description private static NamedSPILoader<Codec>Codec.Holder. LOADERMethods in org.apache.lucene.codecs that return Codec Modifier and Type Method Description static CodecCodec. forName(java.lang.String name)looks up a codec by namestatic CodecCodec. getDefault()expert: returns the default codec used for newly createdIndexWriterConfigs.Methods in org.apache.lucene.codecs that return types with arguments of type Codec Modifier and Type Method Description (package private) static NamedSPILoader<Codec>Codec.Holder. getLoader()Methods in org.apache.lucene.codecs with parameters of type Codec Modifier and Type Method Description static voidCodec. setDefault(Codec codec)expert: sets the default codec used for newly createdIndexWriterConfigs.Constructors in org.apache.lucene.codecs with parameters of type Codec Constructor Description FilterCodec(java.lang.String name, Codec delegate)Sole constructor. -
Uses of Codec in org.apache.lucene.codecs.lucene92
Subclasses of Codec in org.apache.lucene.codecs.lucene92 Modifier and Type Class Description classLucene92CodecImplements the Lucene 9.2 index format -
Uses of Codec in org.apache.lucene.codecs.simpletext
Subclasses of Codec in org.apache.lucene.codecs.simpletext Modifier and Type Class Description classSimpleTextCodecplain text index format. -
Uses of Codec in org.apache.lucene.index
Fields in org.apache.lucene.index declared as Codec Modifier and Type Field Description CodecCheckIndex.Status.SegmentInfoStatus. codecCodec used to read this segment.(package private) CodecDocumentsWriterPerThread. codecprotected CodecLiveIndexWriterConfig. codecCodecused to write new segments.private CodecSegmentInfo. codecprivate CodecSegmentMerger. codec(package private) CodecStoredFieldsConsumer. codecprotected CodecTermVectorsConsumer. codecMethods in org.apache.lucene.index that return Codec Modifier and Type Method Description CodecIndexWriterConfig. getCodec()CodecLiveIndexWriterConfig. getCodec()Returns the currentCodec.CodecSegmentInfo. getCodec()ReturnCodecthat wrote this segment.private static CodecSegmentInfos. readCodec(DataInput input)Methods in org.apache.lucene.index with parameters of type Codec Modifier and Type Method Description IndexWriterConfigIndexWriterConfig. setCodec(Codec codec)Set theCodec.voidSegmentInfo. setCodec(Codec codec)Can only be called once.Constructors in org.apache.lucene.index with parameters of type Codec Constructor Description SegmentInfo(Directory dir, Version version, Version minVersion, java.lang.String name, int maxDoc, boolean isCompoundFile, Codec codec, java.util.Map<java.lang.String,java.lang.String> diagnostics, byte[] id, java.util.Map<java.lang.String,java.lang.String> attributes, Sort indexSort)Construct a new complete SegmentInfo instance from input.SortingStoredFieldsConsumer(Codec codec, Directory directory, SegmentInfo info)SortingTermVectorsConsumer(IntBlockPool.Allocator intBlockAllocator, ByteBlockPool.Allocator byteBlockAllocator, Directory directory, SegmentInfo info, Codec codec)StoredFieldsConsumer(Codec codec, Directory directory, SegmentInfo info)TermVectorsConsumer(IntBlockPool.Allocator intBlockAllocator, ByteBlockPool.Allocator byteBlockAllocator, Directory directory, SegmentInfo info, Codec codec)
-