Package org.apache.lucene.index
Class FilteredTermsEnum
java.lang.Object
org.apache.lucene.index.TermsEnum
org.apache.lucene.index.FilteredTermsEnum
- All Implemented Interfaces:
BytesRefIterator
- Direct Known Subclasses:
PrefixTermsEnum,SingleTermsEnum,TermRangeTermsEnum
Abstract class for enumerating a subset of all terms.
Term enumerations are always ordered by
getComparator(). Each term in the enumeration is
greater than all that precede it.
Please note: Consumers of this enum cannot
call seek(), it is forward only; it throws
UnsupportedOperationException when a seeking method
is called.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.index.TermsEnum
TermsEnum.SeekStatus -
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionFilteredTermsEnum(TermsEnum tenum) Creates a filteredTermsEnumon a terms enum.FilteredTermsEnum(TermsEnum tenum, boolean startWithSeek) Creates a filteredTermsEnumon a terms enum. -
Method Summary
Modifier and TypeMethodDescriptionReturns the related attributes, the returnedAttributeSourceis shared with the delegateTermsEnum.intdocFreq()Returns the number of documents containing the current term.GetDocsEnumfor the current term, with control over whether freqs are required.docsAndPositions(Bits bits, DocsAndPositionsEnum reuse, int flags) GetDocsAndPositionsEnumfor the current term, with control over whether offsets and payloads are required.Return theBytesRefComparator used to sort terms provided by the iterator.next()Increments the iteration to the nextBytesRefin the iterator.longord()Returns ordinal position for current term.This enum does not support seeking!voidseekExact(long ord) This enum does not support seeking!booleanThis enum does not support seeking!voidThis enum does not support seeking!term()Returns current term.Returns the filtered enums term statelongReturns 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 org.apache.lucene.index.TermsEnum
docs, docsAndPositions
-
Constructor Details
-
Method Details
-
attributes
Returns the related attributes, the returnedAttributeSourceis shared with the delegateTermsEnum.- Overrides:
attributesin classTermsEnum
-
term
Description copied from class:TermsEnumReturns current term. Do not call this when the enum is unpositioned.- Specified by:
termin classTermsEnum- Throws:
IOException
-
getComparator
Description copied from interface:BytesRefIteratorReturn theBytesRefComparator used to sort terms provided by the iterator. This may return null if there are no items or the iterator is not sorted. Callers may invoke this method many times, so it's best to cache a single instance invalid input: '&' reuse it. -
docFreq
Description copied from class:TermsEnumReturns the number of documents containing the current term. Do not call this when the enum is unpositioned.TermsEnum.SeekStatus.END.- Specified by:
docFreqin classTermsEnum- Throws:
IOException
-
totalTermFreq
Description copied from class:TermsEnumReturns 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.- Specified by:
totalTermFreqin classTermsEnum- Throws:
IOException
-
seekExact
This enum does not support seeking!- Overrides:
seekExactin classTermsEnum- Throws:
UnsupportedOperationException- In general, subclasses do not support seeking.IOException
-
seekCeil
This enum does not support seeking!- Specified by:
seekCeilin classTermsEnum- Throws:
UnsupportedOperationException- In general, subclasses do not support seeking.IOException
-
seekExact
This enum does not support seeking!- Specified by:
seekExactin classTermsEnum- Throws:
UnsupportedOperationException- In general, subclasses do not support seeking.IOException
-
ord
Description copied from class:TermsEnumReturns ordinal position for current term. This is an optional method (the codec may throwUnsupportedOperationException). Do not call this when the enum is unpositioned.- Specified by:
ordin classTermsEnum- Throws:
IOException
-
docs
Description copied from class:TermsEnumGetDocsEnumfor 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.- Specified by:
docsin classTermsEnum- Parameters:
bits- 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:
IOException- See Also:
-
docsAndPositions
public DocsAndPositionsEnum docsAndPositions(Bits bits, DocsAndPositionsEnum reuse, int flags) throws IOException Description copied from class:TermsEnumGetDocsAndPositionsEnumfor 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.- Specified by:
docsAndPositionsin classTermsEnum- Parameters:
bits- 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:
IOException
-
seekExact
This enum does not support seeking!- Overrides:
seekExactin classTermsEnum- Parameters:
term- the term the TermState corresponds tostate- theTermState- Throws:
UnsupportedOperationException- In general, subclasses do not support seeking.IOException
-
termState
Returns the filtered enums term state- Overrides:
termStatein classTermsEnum- Throws:
IOException- See Also:
-
next
Description copied from interface:BytesRefIteratorIncrements the iteration to the nextBytesRefin the iterator. Returns the resultingBytesRefornullif the end of the iterator is reached. The returned BytesRef may be re-used across calls to next. After this method returns null, do not call it again: the results are undefined.- Returns:
- the next
BytesRefin the iterator ornullif the end of the iterator is reached. - Throws:
IOException- If there is a low-level I/O error.
-