Enum FilteredTermsEnum.AcceptStatus
Return value, if term should be accepted or the iteration should
END. The *_SEEK
values denote, that after handling the current term
the enum should call NextSeekTerm(BytesRef) and step forward.
Namespace: Lucene.Net.Index
Assembly: Lucene.Net.dll
Syntax
protected enum FilteredTermsEnum.AcceptStatus
Fields
Name | Description |
---|---|
END | Reject the term and stop enumerating. |
NO | Reject the term and position the enum at the next term. |
NO_AND_SEEK | Reject the term and advance (NextSeekTerm(BytesRef)) to the next term. |
YES | Accept the term and position the enum at the next term. |
YES_AND_SEEK | Accept the term and advance (NextSeekTerm(BytesRef)) to the next term. |