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 java.lang.Object
Encodes/decodesFieldInfos
-
-
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 java.io.IOException
Returns aFieldInfosReader
to read field infos from the index- Throws:
java.io.IOException
-
getFieldInfosWriter
public abstract FieldInfosWriter getFieldInfosWriter() throws java.io.IOException
Returns aFieldInfosWriter
to write field infos to the index- Throws:
java.io.IOException
-
-