Uses of Class
org.apache.lucene.codecs.Codec
Packages that use Codec
Package
Description
Codecs API: API for customization of the encoding and structure of the index.
Codec to support Lucene 3.x indexes (readonly)
Lucene 4.0 file format.
Lucene 4.1 file format.
Lucene 4.2 file format.
Lucene 4.5 file format.
Lucene 4.6 file format.
Code to maintain and access indices.
-
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 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 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.lucene3x
Subclasses of Codec in org.apache.lucene.codecs.lucene3xModifier and TypeClassDescriptionclass
Deprecated.Only for reading existing 3.x indexes -
Uses of Codec in org.apache.lucene.codecs.lucene40
Subclasses of Codec in org.apache.lucene.codecs.lucene40Modifier and TypeClassDescriptionclass
Deprecated.Only for reading old 4.0 segments -
Uses of Codec in org.apache.lucene.codecs.lucene41
Subclasses of Codec in org.apache.lucene.codecs.lucene41Modifier and TypeClassDescriptionclass
Deprecated.Only for reading old 4.0 segments -
Uses of Codec in org.apache.lucene.codecs.lucene42
Subclasses of Codec in org.apache.lucene.codecs.lucene42Modifier and TypeClassDescriptionclass
Deprecated.Only for reading old 4.2 segments -
Uses of Codec in org.apache.lucene.codecs.lucene45
Subclasses of Codec in org.apache.lucene.codecs.lucene45Modifier and TypeClassDescriptionclass
Deprecated.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.lucene46Modifier and TypeClassDescriptionclass
Implements 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 CodecModifier and TypeFieldDescriptionCheckIndex.Status.SegmentInfoStatus.codec
Codec used to read this segment.protected Codec
LiveIndexWriterConfig.codec
Codec
used to write new segments.Methods in org.apache.lucene.index that return CodecModifier and TypeMethodDescriptionIndexWriterConfig.getCodec()
LiveIndexWriterConfig.getCodec()
Returns the currentCodec
.SegmentInfo.getCodec()
ReturnCodec
that wrote this segment.Methods in org.apache.lucene.index with parameters of type CodecConstructors in org.apache.lucene.index with parameters of type CodecModifierConstructorDescriptionSegmentInfo
(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.