Uses of Class
org.apache.lucene.codecs.Codec
Packages that use Codec
Package
Description
Components from the Lucene 7.0 index format.
Components from the Lucene 8.0 index format.
Lucene 8.4 file format.
Lucene 8.6 file format.
Lucene 8.7 file format.
Lucene 9.0 file format.
Lucene 9.1 file format.
Lucene 9.2 file format.
Codecs API: API for customization of the encoding and structure of the index.
Lucene 9.3 file format.
Simpletext Codec: writes human readable postings.
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.lucene70Modifier and TypeClassDescriptionclass
Implements 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 -
Uses of Codec in org.apache.lucene.backward_codecs.lucene84
Subclasses of Codec in org.apache.lucene.backward_codecs.lucene84Modifier and TypeClassDescriptionclass
Implements 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.lucene86Modifier and TypeClassDescriptionclass
Implements 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.lucene87Modifier and TypeClassDescriptionclass
Implements 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 -
Uses of Codec in org.apache.lucene.backward_codecs.lucene91
Subclasses of Codec in org.apache.lucene.backward_codecs.lucene91 -
Uses of Codec in org.apache.lucene.backward_codecs.lucene92
Subclasses of Codec in org.apache.lucene.backward_codecs.lucene92 -
Uses of Codec in org.apache.lucene.codecs
Subclasses of Codec in org.apache.lucene.codecsModifier and TypeClassDescriptionclass
A codec that forwards all its method calls to another codec.Fields in org.apache.lucene.codecs declared as CodecModifier and TypeFieldDescription(package private) static Codec
Codec.Holder.defaultCodec
protected final Codec
FilterCodec.delegate
The codec to filter.Fields in org.apache.lucene.codecs with type parameters of type CodecMethods in org.apache.lucene.codecs that return CodecModifier and TypeMethodDescriptionstatic Codec
looks up a codec by namestatic Codec
Codec.getDefault()
expert: returns the default codec used for newly createdIndexWriterConfig
s.Methods in org.apache.lucene.codecs that return types with arguments of type CodecModifier and TypeMethodDescription(package private) static NamedSPILoader<Codec>
Codec.Holder.getLoader()
Methods in org.apache.lucene.codecs with parameters of type CodecModifier and TypeMethodDescriptionstatic void
Codec.setDefault
(Codec codec) expert: sets the default codec used for newly createdIndexWriterConfig
s.Constructors in org.apache.lucene.codecs with parameters of type CodecModifierConstructorDescriptionprotected
FilterCodec
(String name, Codec delegate) Sole constructor. -
Uses of Codec in org.apache.lucene.codecs.lucene94
Subclasses of Codec in org.apache.lucene.codecs.lucene94 -
Uses of Codec in org.apache.lucene.codecs.simpletext
Subclasses of Codec in org.apache.lucene.codecs.simpletext -
Uses of Codec in org.apache.lucene.index
Fields in org.apache.lucene.index declared as CodecModifier and TypeFieldDescriptionCheckIndex.Status.SegmentInfoStatus.codec
Codec used to read this segment.(package private) final Codec
DocumentsWriterPerThread.codec
protected Codec
LiveIndexWriterConfig.codec
Codec
used to write new segments.private Codec
SegmentInfo.codec
private final Codec
SegmentMerger.codec
(package private) final Codec
StoredFieldsConsumer.codec
protected final Codec
TermVectorsConsumer.codec
private final Codec
VectorValuesConsumer.codec
Methods in org.apache.lucene.index that return CodecModifier and TypeMethodDescriptionIndexWriterConfig.getCodec()
LiveIndexWriterConfig.getCodec()
Returns the currentCodec
.SegmentInfo.getCodec()
ReturnCodec
that wrote this segment.private static Codec
Methods in org.apache.lucene.index with parameters of type CodecConstructors in org.apache.lucene.index with parameters of type CodecModifierConstructorDescriptionSegmentInfo
(Directory dir, Version version, Version minVersion, String name, int maxDoc, boolean isCompoundFile, Codec codec, Map<String, String> diagnostics, byte[] id, Map<String, String> attributes, Sort indexSort) Construct a new complete SegmentInfo instance from input.(package private)
SortingStoredFieldsConsumer
(Codec codec, Directory directory, SegmentInfo info) (package private)
SortingTermVectorsConsumer
(IntBlockPool.Allocator intBlockAllocator, ByteBlockPool.Allocator byteBlockAllocator, Directory directory, SegmentInfo info, Codec codec) (package private)
StoredFieldsConsumer
(Codec codec, Directory directory, SegmentInfo info) (package private)
TermVectorsConsumer
(IntBlockPool.Allocator intBlockAllocator, ByteBlockPool.Allocator byteBlockAllocator, Directory directory, SegmentInfo info, Codec codec) (package private)
VectorValuesConsumer
(Codec codec, Directory directory, SegmentInfo segmentInfo, InfoStream infoStream)