Searched defs:PostingsAndFreq (Results 1 - 1 of 1) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DPhraseQuery.java122 static class PostingsAndFreq implements Comparable<PostingsAndFreq> { class in class:PhraseQuery
129 public PostingsAndFreq(TermPositions postings, int docFreq, int position, Term... terms) { method in class:PhraseQuery.PostingsAndFreq
148 public int compareTo(PostingsAndFreq other) {
185 PostingsAndFreq other = (PostingsAndFreq) obj;
236 PostingsAndFreq[] postingsFreqs = new PostingsAndFreq[terms.size()];
242 postingsFreqs[i] = new PostingsAndFreq(p, reader.docFreq(t), positions.get(i).intValue(), t);

Completed in 1027 milliseconds