SearchQuery |
SearchQuery.addFacet(String facetName,
SearchFacet facet) |
|
SearchQuery |
SearchQuery.clearFacets() |
|
SearchQuery |
SearchQuery.clearHighlight() |
Clears any previously configured highlighting.
|
SearchQuery |
SearchQuery.explain() |
Activates the explanation of each result hit in the response.
|
SearchQuery |
SearchQuery.explain(boolean explain) |
Activates or deactivates the explanation of each result hit in the response, according to the parameter.
|
SearchQuery |
SearchQuery.fields(String... fields) |
Configures the list of fields for which the whole value should be included in the response.
|
SearchQuery |
SearchQuery.highlight() |
Configures the highlighting of matches in the response for all fields, using the server's default highlighting
style.
|
SearchQuery |
SearchQuery.highlight(HighlightStyle style,
String... fields) |
Configures the highlighting of matches in the response.
|
SearchQuery |
SearchQuery.highlight(String... fields) |
Configures the highlighting of matches in the response, for the specified fields and using the server's default
highlighting style.
|
SearchQuery |
SearchQuery.limit(int limit) |
Add a limit to the query on the number of rows it can return.
|
SearchQuery |
SearchQuery.searchConsistency(SearchConsistency consistency) |
Sets the unparameterized consistency to consider for this FTS query.
|
SearchQuery |
SearchQuery.serverSideTimeout(Duration timeout) |
Sets the server side timeout.
|
SearchQuery |
SearchQuery.skip(int skip) |
Set the number of rows to skip (eg.
|
SearchQuery |
SearchQuery.sort(Object... sort) |
Configures the list of fields (including special fields) which are used for sorting purposes.
|