java.lang.Objectorg.apache.lucene.store.instantiated.InstantiatedTermDocs
org.apache.lucene.store.instantiated.InstantiatedTermPositions
All Implemented Interfaces:
TermPositions, TermDocs
Fields inherited from org.apache.lucene.store.instantiated.InstantiatedTermDocs: |
---|
currentDocumentInformation, currentTerm |
Constructor: |
---|
|
Method from org.apache.lucene.store.instantiated.InstantiatedTermPositions Summary: |
---|
getPayload, getPayloadLength, isPayloadAvailable, next, nextPosition, skipTo |
Methods from org.apache.lucene.store.instantiated.InstantiatedTermDocs: |
---|
close, doc, freq, next, read, seek, seek, skipTo |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.lucene.store.instantiated.InstantiatedTermPositions Detail: |
---|
|
|
|
Returns true if there is such a next pair in the enumeration. |
|
Returns true iff there is such an entry. Behaves as if written: boolean skipTo(int target) { do { if (!next()) return false; } while (target > doc()); return true; }Some implementations are considerably more efficient than that. |