Uses of Class
org.apache.lucene.codecs.Codec
-
Packages that use Codec Package Description org.apache.lucene.codecs org.apache.lucene.codecs.lucene84 org.apache.lucene.index org.elasticsearch.index.codec org.elasticsearch.index.engine -
-
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 protected CodecFilterCodec. delegateThe codec to filter.Methods in org.apache.lucene.codecs that return Codec Modifier and Type Method Description static CodecCodec. forName(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 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(String name, Codec delegate)Sole constructor. -
Uses of Codec in org.apache.lucene.codecs.lucene84
Subclasses of Codec in org.apache.lucene.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.index
Fields in org.apache.lucene.index declared as Codec Modifier and Type Field Description CodecCheckIndex.Status.SegmentInfoStatus. codecCodec used to read this segment.protected CodecLiveIndexWriterConfig. codecCodecused to write new segments.Methods 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.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, 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. -
Uses of Codec in org.elasticsearch.index.codec
Subclasses of Codec in org.elasticsearch.index.codec Modifier and Type Class Description classPerFieldMappingPostingFormatCodecThis postings formatis the defaultPostingsFormatfor Elasticsearch.Methods in org.elasticsearch.index.codec that return Codec Modifier and Type Method Description CodecCodecService. codec(String name) -
Uses of Codec in org.elasticsearch.index.engine
Methods in org.elasticsearch.index.engine that return Codec Modifier and Type Method Description CodecEngineConfig. getCodec()Returns theCodecused in the enginesIndexWriter
-