Package | Description |
---|---|
com.couchbase.client.java.search | |
com.couchbase.client.java.search.queries |
Modifier and Type | Method and Description |
---|---|
AbstractFtsQuery |
SearchQuery.query() |
Modifier and Type | Method and Description |
---|---|
static ConjunctionQuery |
SearchQuery.conjuncts(AbstractFtsQuery... queries)
Prepare a
ConjunctionQuery body. |
static DisjunctionQuery |
SearchQuery.disjuncts(AbstractFtsQuery... queries)
Prepare a
DisjunctionQuery body. |
Constructor and Description |
---|
SearchQuery(String indexName,
AbstractFtsQuery queryPart)
Prepare an FTS
SearchQuery on an index. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractCompoundQuery
Base class for FTS queries that are composite, compounding several other
AbstractFtsQuery . |
class |
BooleanFieldQuery
A FTS query that queries fields explicitly indexed as boolean.
|
class |
BooleanQuery
A compound FTS query that allows various combinations of sub-queries.
|
class |
ConjunctionQuery
A compound FTS query that performs a logical AND between all its sub-queries (conjunction).
|
class |
DateRangeQuery
A FTS query that matches documents on a range of dates.
|
class |
DisjunctionQuery
A compound FTS query that performs a logical OR between all its sub-queries (disjunction).
|
class |
DocIdQuery
A FTS query that matches on Couchbase document IDs.
|
class |
MatchAllQuery
A FTS query that matches all indexed documents (usually for debugging purposes).
|
class |
MatchNoneQuery
A FTS query that matches 0 document (usually for debugging purposes).
|
class |
MatchPhraseQuery
A FTS query that matches several given terms (a “phrase”), applying further processing like analyzers to them.
|
class |
MatchQuery
A FTS query that matches a given term, applying further processing to it like analyzers, stemming and even
fuzziness . |
class |
NumericRangeQuery
A FTS query that matches documents on a range of values.
|
class |
PhraseQuery
A FTS query that matches several terms (a “phrase”) as is.
|
class |
PrefixQuery
A FTS query that allows for simple matching on a given prefix.
|
class |
RegexpQuery
A FTS query that allows for simple matching of regular expressions.
|
class |
StringQuery
A FTS query that performs a search according to the “string query” syntax.
|
class |
TermQuery
A FTS query that matches terms (without further analysis).
|
class |
WildcardQuery
An FTS query that allows for simple matching using wildcard characters (* and ?).
|
Modifier and Type | Method and Description |
---|---|
AbstractFtsQuery |
AbstractFtsQuery.boost(double boost) |
Modifier and Type | Method and Description |
---|---|
List<AbstractFtsQuery> |
AbstractCompoundQuery.childQueries() |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractCompoundQuery.addAll(AbstractFtsQuery... queries) |
ConjunctionQuery |
ConjunctionQuery.and(AbstractFtsQuery... queries) |
BooleanQuery |
BooleanQuery.must(AbstractFtsQuery... mustQueries) |
BooleanQuery |
BooleanQuery.mustNot(AbstractFtsQuery... mustNotQueries) |
DisjunctionQuery |
DisjunctionQuery.or(AbstractFtsQuery... queries) |
BooleanQuery |
BooleanQuery.should(AbstractFtsQuery... shouldQueries) |
Constructor and Description |
---|
AbstractCompoundQuery(AbstractFtsQuery... queries) |
ConjunctionQuery(AbstractFtsQuery... queries) |
DisjunctionQuery(AbstractFtsQuery... queries) |
Copyright © 2015 Couchbase, Inc.