Uses of Class
org.apache.lucene.search.TwoPhaseIterator
-
Packages that use TwoPhaseIterator Package Description org.apache.lucene.search Code to search indices. -
-
Uses of TwoPhaseIterator in org.apache.lucene.search
Fields in org.apache.lucene.search declared as TwoPhaseIterator Modifier and Type Field Description TwoPhaseIterator
DisiWrapper. twoPhaseView
Methods in org.apache.lucene.search that return TwoPhaseIterator Modifier and Type Method Description TwoPhaseIterator
ConstantScoreScorer. twoPhaseIterator()
TwoPhaseIterator
FilterScorer. twoPhaseIterator()
TwoPhaseIterator
Scorer. twoPhaseIterator()
Optional method: Return aTwoPhaseIterator
view of thisScorer
.static TwoPhaseIterator
TwoPhaseIterator. unwrap(DocIdSetIterator iterator)
If the givenDocIdSetIterator
has been created withasDocIdSetIterator(org.apache.lucene.search.TwoPhaseIterator)
, then this will return the wrappedTwoPhaseIterator
.Methods in org.apache.lucene.search with parameters of type TwoPhaseIterator Modifier and Type Method Description static void
ConjunctionUtils. addTwoPhaseIterator(TwoPhaseIterator twoPhaseIter, List<DocIdSetIterator> allIterators, List<TwoPhaseIterator> twoPhaseIterators)
Given a two-phase iterator, find any sub-iterators and add them to the provided DocIdSetIterator and TwoPhaseIterator listsstatic DocIdSetIterator
TwoPhaseIterator. asDocIdSetIterator(TwoPhaseIterator twoPhaseIterator)
Return aDocIdSetIterator
view of the providedTwoPhaseIterator
.Constructors in org.apache.lucene.search with parameters of type TwoPhaseIterator Constructor Description ConstantScoreScorer(Weight weight, float score, ScoreMode scoreMode, TwoPhaseIterator twoPhaseIterator)
Constructor based on aTwoPhaseIterator
.
-