Class TermsEnum
- java.lang.Object
 - 
- org.apache.lucene.index.TermsEnum
 
 
- 
- All Implemented Interfaces:
 BytesRefIterator
- Direct Known Subclasses:
 FilterAtomicReader.FilterTermsEnum,FilteredTermsEnum,FuzzyTermsEnum,MultiTermsEnum
public abstract class TermsEnum extends java.lang.Object implements BytesRefIterator
Iterator to seek (seekCeil(BytesRef),seekExact(BytesRef)) or step through (BytesRefIterator.next()terms to obtain frequency information (docFreq()),DocsEnumorDocsAndPositionsEnumfor the current term (docs(org.apache.lucene.util.Bits, org.apache.lucene.index.DocsEnum).Term enumerations are always ordered by
BytesRefIterator.getComparator(). Each term in the enumeration is greater than the one before it.The TermsEnum is unpositioned when you first obtain it and you must first successfully call
BytesRefIterator.next()or one of theseekmethods. 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTermsEnum.SeekStatusRepresents returned result fromseekCeil(org.apache.lucene.util.BytesRef). 
- 
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description AttributeSourceattributes()Returns the related attributes.abstract intdocFreq()Returns the number of documents containing the current term.DocsEnumdocs(Bits liveDocs, DocsEnum reuse)GetDocsEnumfor the current term.abstract DocsEnumdocs(Bits liveDocs, DocsEnum reuse, int flags)GetDocsEnumfor the current term, with control over whether freqs are required.DocsAndPositionsEnumdocsAndPositions(Bits liveDocs, DocsAndPositionsEnum reuse)GetDocsAndPositionsEnumfor the current term.abstract DocsAndPositionsEnumdocsAndPositions(Bits liveDocs, DocsAndPositionsEnum reuse, int flags)GetDocsAndPositionsEnumfor the current term, with control over whether offsets and payloads are required.abstract longord()Returns ordinal position for current term.abstract TermsEnum.SeekStatusseekCeil(BytesRef text)Seeks to the specified term, if it exists, or to the next (ceiling) term.abstract voidseekExact(long ord)Seeks to the specified term by ordinal (position) as previously returned byord().booleanseekExact(BytesRef text)Attempts to seek to the exact term, returning true if the term is found.voidseekExact(BytesRef term, TermState state)Expert: Seeks a specific position byTermStatepreviously obtained fromtermState().abstract BytesRefterm()Returns current term.TermStatetermState()Expert: Returns the TermsEnums internal state to position the TermsEnum without re-seeking the term dictionary.abstract longtotalTermFreq()Returns the total number of occurrences of this term across all documents (the sum of the freq() for each doc that has this term).- 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
- 
Methods inherited from interface org.apache.lucene.util.BytesRefIterator
getComparator, next 
 - 
 
 - 
 
- 
- 
Field Detail
- 
EMPTY
public static final TermsEnum EMPTY
An empty TermsEnum for quickly returning an empty instance e.g. inMultiTermQueryPlease note: This enum should be unmodifiable, but it is currently possible to add Attributes to it. This should not be a problem, as the enum is always empty and the existence of unused Attributes does not matter.
 
 - 
 
- 
Method Detail
- 
attributes
public AttributeSource attributes()
Returns the related attributes. 
- 
seekExact
public boolean seekExact(BytesRef text) throws java.io.IOException
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 thanseekCeil(org.apache.lucene.util.BytesRef).- Throws:
 java.io.IOException
 
- 
seekCeil
public abstract TermsEnum.SeekStatus seekCeil(BytesRef text) throws java.io.IOException
Seeks to the specified term, if it exists, or to the next (ceiling) term. Returns SeekStatus to indicate whether exact term was found, a different term was found, or EOF was hit. The target term may be before or after the current term. If this returns SeekStatus.END, the enum is unpositioned.- Throws:
 java.io.IOException
 
- 
seekExact
public abstract void seekExact(long ord) throws java.io.IOExceptionSeeks to the specified term by ordinal (position) as previously returned byord(). The target ord may be before or after the current ord, and must be within bounds.- Throws:
 java.io.IOException
 
- 
seekExact
public void seekExact(BytesRef term, TermState state) throws java.io.IOException
Expert: Seeks a specific position byTermStatepreviously obtained fromtermState(). Callers should maintain theTermStateto use this method. Low-level implementations may position the TermsEnum without re-seeking the term dictionary.Seeking by
TermStateshould only be used iff the state was obtained from the sameTermsEnuminstance.NOTE: Using this method with an incompatible
TermStatemight leave thisTermsEnumin undefined state. On a segment levelTermStateinstances are compatible only iff the source and the targetTermsEnumoperate on the same field. If operating on segment level, TermState instances must not be used across segments.NOTE: A seek by
TermStatemight not restore theAttributeSource's state.AttributeSourcestates must be maintained separately if this method is used.- Parameters:
 term- the term the TermState corresponds tostate- theTermState- Throws:
 java.io.IOException
 
- 
term
public abstract BytesRef term() throws java.io.IOException
Returns current term. Do not call this when the enum is unpositioned.- Throws:
 java.io.IOException
 
- 
ord
public abstract long ord() throws java.io.IOExceptionReturns ordinal position for current term. This is an optional method (the codec may throwUnsupportedOperationException). Do not call this when the enum is unpositioned.- Throws:
 java.io.IOException
 
- 
docFreq
public abstract int docFreq() throws java.io.IOExceptionReturns the number of documents containing the current term. Do not call this when the enum is unpositioned.TermsEnum.SeekStatus.END.- Throws:
 java.io.IOException
 
- 
totalTermFreq
public abstract long totalTermFreq() throws java.io.IOExceptionReturns the total number of occurrences of this term across all documents (the sum of the freq() for each doc that has this term). This will be -1 if the codec doesn't support this measure. Note that, like other term measures, this measure does not take deleted documents into account.- Throws:
 java.io.IOException
 
- 
docs
public final DocsEnum docs(Bits liveDocs, DocsEnum reuse) throws java.io.IOException
GetDocsEnumfor the current term. Do not call this when the enum is unpositioned. This method will not return null.- Parameters:
 liveDocs- unset bits are documents that should not be returnedreuse- pass a prior DocsEnum for possible reuse- Throws:
 java.io.IOException
 
- 
docs
public abstract DocsEnum docs(Bits liveDocs, DocsEnum reuse, int flags) throws java.io.IOException
GetDocsEnumfor the current term, with control over whether freqs are required. Do not call this when the enum is unpositioned. This method will not return null.- Parameters:
 liveDocs- unset bits are documents that should not be returnedreuse- pass a prior DocsEnum for possible reuseflags- specifies which optional per-document values you require; seeDocsEnum.FLAG_FREQS- Throws:
 java.io.IOException- See Also:
 docs(Bits, DocsEnum, int)
 
- 
docsAndPositions
public final DocsAndPositionsEnum docsAndPositions(Bits liveDocs, DocsAndPositionsEnum reuse) throws java.io.IOException
GetDocsAndPositionsEnumfor the current term. Do not call this when the enum is unpositioned. This method will return null if positions were not indexed.- Parameters:
 liveDocs- unset bits are documents that should not be returnedreuse- pass a prior DocsAndPositionsEnum for possible reuse- Throws:
 java.io.IOException- See Also:
 docsAndPositions(Bits, DocsAndPositionsEnum, int)
 
- 
docsAndPositions
public abstract DocsAndPositionsEnum docsAndPositions(Bits liveDocs, DocsAndPositionsEnum reuse, int flags) throws java.io.IOException
GetDocsAndPositionsEnumfor the current term, with control over whether offsets and payloads are required. Some codecs may be able to optimize their implementation when offsets and/or payloads are not required. Do not call this when the enum is unpositioned. This will return null if positions were not indexed.- Parameters:
 liveDocs- unset bits are documents that should not be returnedreuse- pass a prior DocsAndPositionsEnum for possible reuseflags- specifies which optional per-position values you require; seeDocsAndPositionsEnum.FLAG_OFFSETSandDocsAndPositionsEnum.FLAG_PAYLOADS.- Throws:
 java.io.IOException
 
- 
termState
public TermState termState() throws java.io.IOException
Expert: Returns the TermsEnums internal state to position the TermsEnum without re-seeking the term dictionary.NOTE: A seek by
TermStatemight not capture theAttributeSource's state. Callers must maintain theAttributeSourcestates separately- Throws:
 java.io.IOException- See Also:
 TermState,seekExact(BytesRef, TermState)
 
 - 
 
 -