mirror of https://github.com/apache/lucene.git
try to bring this list more up to date, and link in the queries module
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1376635 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
25b87a98c6
commit
edffda8b76
|
@ -28,17 +28,21 @@ import org.apache.lucene.index.Term;
|
|||
<p>Instantiable subclasses are:
|
||||
<ul>
|
||||
<li> {@link TermQuery}
|
||||
<li> {@link MultiTermQuery}
|
||||
<li> {@link BooleanQuery}
|
||||
<li> {@link WildcardQuery}
|
||||
<li> {@link PhraseQuery}
|
||||
<li> {@link PrefixQuery}
|
||||
<li> {@link MultiPhraseQuery}
|
||||
<li> {@link FuzzyQuery}
|
||||
<li> {@link RegexpQuery}
|
||||
<li> {@link TermRangeQuery}
|
||||
<li> {@link NumericRangeQuery}
|
||||
<li> {@link org.apache.lucene.search.spans.SpanQuery}
|
||||
<li> {@link ConstantScoreQuery}
|
||||
<li> {@link DisjunctionMaxQuery}
|
||||
<li> {@link MatchAllDocsQuery}
|
||||
</ul>
|
||||
<p>See also the family of {@link org.apache.lucene.search.spans Span Queries}
|
||||
and additional queries available in the <a href="{@docRoot}/../queries/overview-summary.html">Queries module</a>
|
||||
*/
|
||||
public abstract class Query implements Cloneable {
|
||||
private float boost = 1.0f; // query boost factor
|
||||
|
|
Loading…
Reference in New Issue