Package org.apache.lucene.index
Class BaseTermsEnum
java.lang.Object
org.apache.lucene.index.TermsEnum
org.apache.lucene.index.BaseTermsEnum
- All Implemented Interfaces:
BytesRefIterator
- Direct Known Subclasses:
MultiTermsEnum
A base TermsEnum that adds default implementations for
In some cases, the default implementation may be slow and consume huge memory, so subclass SHOULD
have its own implementation if possible.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.index.TermsEnum
TermsEnum.SeekStatus
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns the related attributes.boolean
Attempts to seek to the exact term, returning true if the term is found.void
Expert: Seeks a specific position byTermState
previously obtained fromTermsEnum.termState()
.Expert: Returns the TermsEnums internal state to position the TermsEnum without re-seeking the term dictionary.Methods inherited from class org.apache.lucene.index.TermsEnum
docFreq, impacts, ord, postings, postings, seekCeil, seekExact, term, totalTermFreq
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.lucene.util.BytesRefIterator
next
-
Constructor Details
-
BaseTermsEnum
protected BaseTermsEnum()Sole constructor. (For invocation by subclass constructors, typically implicit.)
-
-
Method Details
-
termState
Description copied from class:TermsEnum
Expert: Returns the TermsEnums internal state to position the TermsEnum without re-seeking the term dictionary.NOTE: A seek by
TermState
might not capture theAttributeSource
's state. Callers must maintain theAttributeSource
states separately- Specified by:
termState
in classTermsEnum
- Throws:
IOException
- See Also:
-
seekExact
Description copied from class:TermsEnum
Attempts to seek to the exact term, returning true if the term is found. If this returns false, the enum is unpositioned. For some codecs, seekExact may be substantially faster thanTermsEnum.seekCeil(org.apache.lucene.util.BytesRef)
.- Specified by:
seekExact
in classTermsEnum
- Returns:
- true if the term is found; return false if the enum is unpositioned.
- Throws:
IOException
-
seekExact
Description copied from class:TermsEnum
Expert: Seeks a specific position byTermState
previously obtained fromTermsEnum.termState()
. Callers should maintain theTermState
to use this method. Low-level implementations may position the TermsEnum without re-seeking the term dictionary.Seeking by
TermState
should only be used iff the state was obtained from the sameTermsEnum
instance.NOTE: Using this method with an incompatible
TermState
might leave thisTermsEnum
in undefined state. On a segment levelTermState
instances are compatible only iff the source and the targetTermsEnum
operate on the same field. If operating on segment level, TermState instances must not be used across segments.NOTE: A seek by
TermState
might not restore theAttributeSource
's state.AttributeSource
states must be maintained separately if this method is used.- Specified by:
seekExact
in classTermsEnum
- Parameters:
term
- the term the TermState corresponds tostate
- theTermState
- Throws:
IOException
-
attributes
Description copied from class:TermsEnum
Returns the related attributes.- Specified by:
attributes
in classTermsEnum
-