Uses of Class
org.apache.lucene.codecs.Codec
-
Packages that use Codec Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene3x Codec to support Lucene 3.x indexes (readonly)org.apache.lucene.codecs.lucene40 Lucene 4.0 file format.org.apache.lucene.codecs.lucene41 Lucene 4.1 file format.org.apache.lucene.codecs.lucene42 Lucene 4.2 file format.org.apache.lucene.codecs.lucene45 Lucene 4.5 file format.org.apache.lucene.codecs.lucene46 Lucene 4.6 file format.org.apache.lucene.index Code to maintain and access indices. -
-
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.lucene3x
Subclasses of Codec in org.apache.lucene.codecs.lucene3x Modifier and Type Class Description classLucene3xCodecDeprecated.Only for reading existing 3.x indexes -
Uses of Codec in org.apache.lucene.codecs.lucene40
Subclasses of Codec in org.apache.lucene.codecs.lucene40 Modifier and Type Class Description classLucene40CodecDeprecated.Only for reading old 4.0 segments -
Uses of Codec in org.apache.lucene.codecs.lucene41
Subclasses of Codec in org.apache.lucene.codecs.lucene41 Modifier and Type Class Description classLucene41CodecDeprecated.Only for reading old 4.0 segments -
Uses of Codec in org.apache.lucene.codecs.lucene42
Subclasses of Codec in org.apache.lucene.codecs.lucene42 Modifier and Type Class Description classLucene42CodecDeprecated.Only for reading old 4.2 segments -
Uses of Codec in org.apache.lucene.codecs.lucene45
Subclasses of Codec in org.apache.lucene.codecs.lucene45 Modifier and Type Class Description classLucene45CodecDeprecated.Only for reading old 4.3-4.5 segments -
Uses of Codec in org.apache.lucene.codecs.lucene46
Subclasses of Codec in org.apache.lucene.codecs.lucene46 Modifier and Type Class Description classLucene46CodecImplements the Lucene 4.6 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, String version, String name, int docCount, boolean isCompoundFile, Codec codec, Map<String,String> diagnostics)Construct a new complete SegmentInfo instance from input.SegmentInfo(Directory dir, String version, String name, int docCount, boolean isCompoundFile, Codec codec, Map<String,String> diagnostics, Map<String,String> attributes)Construct a new complete SegmentInfo instance from input.
-