Package org.apache.lucene.codecs
Class FieldInfosFormat
- java.lang.Object
-
- org.apache.lucene.codecs.FieldInfosFormat
-
- Direct Known Subclasses:
Lucene40FieldInfosFormat
,Lucene42FieldInfosFormat
,Lucene46FieldInfosFormat
public abstract class FieldInfosFormat extends Object
Encodes/decodesFieldInfos
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
FieldInfosFormat()
Sole constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract FieldInfosReader
getFieldInfosReader()
Returns aFieldInfosReader
to read field infos from the indexabstract FieldInfosWriter
getFieldInfosWriter()
Returns aFieldInfosWriter
to write field infos to the index
-
-
-
Method Detail
-
getFieldInfosReader
public abstract FieldInfosReader getFieldInfosReader() throws IOException
Returns aFieldInfosReader
to read field infos from the index- Throws:
IOException
-
getFieldInfosWriter
public abstract FieldInfosWriter getFieldInfosWriter() throws IOException
Returns aFieldInfosWriter
to write field infos to the index- Throws:
IOException
-
-