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

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DPhraseQuery.java33 * A PhraseQuery is built by QueryParser for input like <code>"new york"</code>.
37 public class PhraseQuery extends Query { class in inherits:Query
45 public PhraseQuery() {} method in class:PhraseQuery
210 public String toString() { return "weight(" + PhraseQuery.this + ")"; }
213 public Query getQuery() { return PhraseQuery.this; }
419 if (!(o instanceof PhraseQuery))
421 PhraseQuery other = (PhraseQuery)o;

Completed in 289 milliseconds