Class Lucene40NormsFormat
- java.lang.Object
-
- org.apache.lucene.codecs.NormsFormat
-
- org.apache.lucene.codecs.lucene40.Lucene40NormsFormat
-
@Deprecated public class Lucene40NormsFormat extends NormsFormat
Deprecated.Only for reading old 4.0 and 4.1 segmentsLucene 4.0 Norms Format.Files:
- .nrm.cfs:
compound container - .nrm.cfe:
compound entries
DocValues.- See Also:
Lucene40DocValuesFormat
- .nrm.cfs:
-
-
Constructor Summary
Constructors Constructor Description Lucene40NormsFormat()Deprecated.Sole constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description DocValuesConsumernormsConsumer(SegmentWriteState state)Deprecated.Returns aDocValuesConsumerto write norms to the index.DocValuesProducernormsProducer(SegmentReadState state)Deprecated.Returns aDocValuesProducerto read norms from the index.
-
-
-
Method Detail
-
normsConsumer
public DocValuesConsumer normsConsumer(SegmentWriteState state) throws java.io.IOException
Deprecated.Description copied from class:NormsFormatReturns aDocValuesConsumerto write norms to the index.- Specified by:
normsConsumerin classNormsFormat- Throws:
java.io.IOException
-
normsProducer
public DocValuesProducer normsProducer(SegmentReadState state) throws java.io.IOException
Deprecated.Description copied from class:NormsFormatReturns aDocValuesProducerto read norms from the index.NOTE: by the time this call returns, it must hold open any files it will need to use; else, those files may be deleted. Additionally, required files may be deleted during the execution of this call before there is a chance to open them. Under these circumstances an IOException should be thrown by the implementation. IOExceptions are expected and will automatically cause a retry of the segment opening logic with the newly revised segments.
- Specified by:
normsProducerin classNormsFormat- Throws:
java.io.IOException
-
-