Frames | No Frames |
Methods with parameter type org.apache.lucene.search.Query | |
void |
Methods with return type org.apache.lucene.search.Query | |
Query | QueryParser.Clause(String field) |
Query | QueryParser.Query(String field) |
Query | QueryParser.Term(String field) |
Query | QueryParser.getBooleanQuery(Vector clauses) Factory method for generating query, given a set of clauses. |
Query | QueryParser.getFieldQuery(String field, String queryText) |
Query | QueryParser.getFieldQuery(String field, String queryText, int slop) Base implementation delegates to getFieldQuery(String,String) . |
Query | Note that parameter analyzer is ignored. |
Query | Base implementation delegates to getFieldQuery(String,Analyzer,String) . |
Query | QueryParser.getFuzzyQuery(String field, String termStr) Factory method for generating a query (similar to
( getWildcardQuery(String,String) ). |
Query | QueryParser.getFuzzyQuery(String field, String termStr, float minSimilarity) Factory method for generating a query (similar to
( getWildcardQuery(String,String) ). |
Query | QueryParser.getPrefixQuery(String field, String termStr) Factory method for generating a query (similar to
( getWildcardQuery(String,String) ). |
Query | QueryParser.getRangeQuery(String field, String part1, String part2, boolean inclusive) |
Query | QueryParser.getRangeQuery(String field, Analyzer analyzer, String part1, String part2, boolean inclusive) Note that parameter analyzer is ignored. |
Query | QueryParser.getWildcardQuery(String field, String termStr) Factory method for generating a query. |
Query | QueryParser.parse(String query) Parses a query string, returning a
Query. |
Query | Parses a query string, returning a Query . |
Query |
Parses a query, searching on the fields specified. |
Query |
Parses a query which searches on the fields specified. |
Classes derived from org.apache.lucene.search.Query | |
class | A Query that matches documents matching boolean combinations of other
queries, typically TermQuery s or PhraseQuery s. |
class | A query that applies a filter to the results of another query. |
class | Implements the fuzzy search query. |
class | A Query that matches documents containing a subset of terms provided
by a FilteredTermEnum enumeration. |
class | PhrasePrefixQuery is a generalized version of PhraseQuery, with an added
method add(Term[]) . |
class | A Query that matches documents containing a particular sequence of terms. |
class | A Query that matches documents containing terms with a specified prefix. |
class | A Query that matches documents within an exclusive range. |
class | A Query that matches documents containing a term. |
class | Implements the wildcard search query. |
Constructors with parameter type org.apache.lucene.search.Query | |
Constructs a BooleanClause with query q , required
r and prohibited p . | |
Constructs a new query which applies a filter to the results of the original query. | |
Constructs a filter which only matches documents matching
query . |
Fields of type org.apache.lucene.search.Query | |
Query | The query whose matching documents are combined by the boolean query. |
Methods with parameter type org.apache.lucene.search.Query | |
void | Adds a clause to a boolean query. |
Query | Expert: called when re-writing queries under MultiSearcher. |
Query | Expert: called when re-writing queries under MultiSearcher. |
Query | Expert: called when re-writing queries under MultiSearcher. |
Query | |
Explanation | |
Explanation | |
Explanation | Returns an Explanation that describes how doc scored against
query . |
Explanation | Returns an Explanation that describes how doc scored against
query . |
Query | Expert: merges the clauses of a set of BooleanQuery's into a single
BooleanQuery. |
Query | |
Query | |
Query | |
Query | Expert: called to re-write queries into primitive queries. |
Query | Expert: called to re-write queries into primitive queries. |
Hits | Returns the documents matching query . |
Hits | Returns the documents matching query and
filter . |
TopDocs | |
TopDocs | |
TopDocs | A search implementation which spans a new thread for each
Searchable, waits for each search to complete and merge
the results back together. |
TopDocs | Expert: Low-level search implementation. |
TopDocs | Expert: Low-level search implementation. |
TopFieldDocs | |
TopFieldDocs | |
TopFieldDocs | A search implementation allowing sorting which spans a new thread for each
Searchable, waits for each search to complete and merges
the results back together. |
TopFieldDocs | Expert: Low-level search implementation with arbitrary sorting. |
TopFieldDocs | Expert: Low-level search implementation with arbitrary sorting. |
void | |
void | |
void | Lower-level search API. |
void | Lower-level search API. |
void | Lower-level search API. |
Hits | Returns documents matching query and filter ,
sorted by sort . |
void | Lower-level search API. |
Hits | Returns documents matching query sorted by
sort . |
Methods with return type org.apache.lucene.search.Query | |
Query | Expert: called when re-writing queries under MultiSearcher. |
Query | Expert: called when re-writing queries under MultiSearcher. |
Query | Expert: called when re-writing queries under MultiSearcher. |
Query | |
Query | |
Query | The query that this concerns. |
Query | Expert: merges the clauses of a set of BooleanQuery's into a single
BooleanQuery. |
Query | Expert: called to re-write queries into primitive queries. |
Query | Rewrites the wrapped query. |
Query | Expert: called to re-write queries into primitive queries. |
Query | Expert: called to re-write queries into primitive queries. |
Query | Expert: called to re-write queries into primitive queries. |
Query | FIXME: Describe rewrite method here. |
Query | |
Query | |
Query | |
Query | Expert: called to re-write queries into primitive queries. |
Query | Expert: called to re-write queries into primitive queries. |
Classes derived from org.apache.lucene.search.Query | |
class | Matches spans near the beginning of a field. |
class | Matches spans which are near one another. |
class | Removes matches which overlap with another SpanQuery. |
class | Matches the union of its clauses. |
class | Base class for span-based queries. |
class | Matches spans containing a term. |