public abstract class CodecReader extends LeafReader implements Accountable
LeafReader.CoreClosedListener
IndexReader.ReaderClosedListener
Modifier | Constructor and Description |
---|---|
protected |
CodecReader()
Sole constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
checkIntegrity()
Checks consistency of this reader.
|
protected void |
doClose()
Implements close.
|
void |
document(int docID,
StoredFieldVisitor visitor)
Expert: visits the fields of a stored document, for
custom processing/loading of each field.
|
Fields |
fields()
Returns
Fields for this reader. |
BinaryDocValues |
getBinaryDocValues(String field)
Returns
BinaryDocValues for this field, or
null if no BinaryDocValues were indexed for
this field. |
Collection<Accountable> |
getChildResources()
Returns nested resources of this class.
|
Bits |
getDocsWithField(String field)
Returns a
Bits at the size of reader.maxDoc() ,
with turned on bits for each docid that does have a value for this field,
or null if no DocValues were indexed for this field. |
abstract DocValuesProducer |
getDocValuesReader()
Expert: retrieve underlying DocValuesProducer
|
abstract StoredFieldsReader |
getFieldsReader()
Expert: retrieve thread-private StoredFieldsReader
|
abstract NormsProducer |
getNormsReader()
Expert: retrieve underlying NormsProducer
|
NumericDocValues |
getNormValues(String field)
Returns
NumericDocValues representing norms
for this field, or null if no NumericDocValues
were indexed. |
NumericDocValues |
getNumericDocValues(String field)
Returns
NumericDocValues for this field, or
null if no NumericDocValues were indexed for
this field. |
abstract PointsReader |
getPointsReader()
Expert: retrieve underlying PointsReader
|
abstract FieldsProducer |
getPostingsReader()
Expert: retrieve underlying FieldsProducer
|
SortedDocValues |
getSortedDocValues(String field)
Returns
SortedDocValues for this field, or
null if no SortedDocValues were indexed for
this field. |
SortedNumericDocValues |
getSortedNumericDocValues(String field)
Returns
SortedNumericDocValues for this field, or
null if no SortedNumericDocValues were indexed for
this field. |
SortedSetDocValues |
getSortedSetDocValues(String field)
Returns
SortedSetDocValues for this field, or
null if no SortedSetDocValues were indexed for
this field. |
Fields |
getTermVectors(int docID)
Retrieve term vectors for this document, or null if
term vectors were not indexed.
|
abstract TermVectorsReader |
getTermVectorsReader()
Expert: retrieve thread-private TermVectorsReader
|
long |
ramBytesUsed()
Return the memory usage of this object in bytes.
|
addCoreClosedListener, addCoreClosedListenerAsReaderClosedListener, docFreq, getContext, getDocCount, getFieldInfos, getIndexSort, getLiveDocs, getPointValues, getSumDocFreq, getSumTotalTermFreq, postings, postings, removeCoreClosedListener, removeCoreClosedListenerAsReaderClosedListener, terms, totalTermFreq
addReaderClosedListener, close, decRef, document, document, ensureOpen, equals, getCombinedCoreAndDeletesKey, getCoreCacheKey, getRefCount, getTermVector, hasDeletions, hashCode, incRef, leaves, maxDoc, numDeletedDocs, numDocs, registerParentReader, removeReaderClosedListener, tryIncRef
protected CodecReader()
public abstract StoredFieldsReader getFieldsReader()
public abstract TermVectorsReader getTermVectorsReader()
public abstract NormsProducer getNormsReader()
public abstract DocValuesProducer getDocValuesReader()
public abstract FieldsProducer getPostingsReader()
public abstract PointsReader getPointsReader()
public final void document(int docID, StoredFieldVisitor visitor) throws IOException
IndexReader
IndexReader.document(int)
. If you want to load a subset, use
DocumentStoredFieldVisitor
.document
in class IndexReader
IOException
public final Fields getTermVectors(int docID) throws IOException
IndexReader
getTermVectors
in class IndexReader
IOException
public final Fields fields()
LeafReader
Fields
for this reader.
This method will not return null.fields
in class LeafReader
public final NumericDocValues getNumericDocValues(String field) throws IOException
LeafReader
NumericDocValues
for this field, or
null if no NumericDocValues
were indexed for
this field. The returned instance should only be
used by a single thread.getNumericDocValues
in class LeafReader
IOException
public final Bits getDocsWithField(String field) throws IOException
LeafReader
Bits
at the size of reader.maxDoc()
,
with turned on bits for each docid that does have a value for this field,
or null if no DocValues were indexed for this field. The
returned instance should only be used by a single threadgetDocsWithField
in class LeafReader
IOException
public final BinaryDocValues getBinaryDocValues(String field) throws IOException
LeafReader
BinaryDocValues
for this field, or
null if no BinaryDocValues
were indexed for
this field. The returned instance should only be
used by a single thread.getBinaryDocValues
in class LeafReader
IOException
public final SortedDocValues getSortedDocValues(String field) throws IOException
LeafReader
SortedDocValues
for this field, or
null if no SortedDocValues
were indexed for
this field. The returned instance should only be
used by a single thread.getSortedDocValues
in class LeafReader
IOException
public final SortedNumericDocValues getSortedNumericDocValues(String field) throws IOException
LeafReader
SortedNumericDocValues
for this field, or
null if no SortedNumericDocValues
were indexed for
this field. The returned instance should only be
used by a single thread.getSortedNumericDocValues
in class LeafReader
IOException
public final SortedSetDocValues getSortedSetDocValues(String field) throws IOException
LeafReader
SortedSetDocValues
for this field, or
null if no SortedSetDocValues
were indexed for
this field. The returned instance should only be
used by a single thread.getSortedSetDocValues
in class LeafReader
IOException
public final NumericDocValues getNormValues(String field) throws IOException
LeafReader
NumericDocValues
representing norms
for this field, or null if no NumericDocValues
were indexed. The returned instance should only be
used by a single thread.getNormValues
in class LeafReader
IOException
protected void doClose() throws IOException
IndexReader
doClose
in class IndexReader
IOException
public long ramBytesUsed()
Accountable
ramBytesUsed
in interface Accountable
public Collection<Accountable> getChildResources()
Accountable
getChildResources
in interface Accountable
Accountables
public void checkIntegrity() throws IOException
LeafReader
Note that this may be costly in terms of I/O, e.g. may involve computing a checksum value against large data files.
checkIntegrity
in class LeafReader
IOException
Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.