Package org.ametys.cms.search.query
Class ConstantNilScoreQuery
java.lang.Object
org.ametys.cms.search.query.AbstractWrapperQuery
org.ametys.cms.search.query.ConstantNilScoreQuery
- All Implemented Interfaces:
Query
Wraps another
Thus, it will act as in a fq (filter query), and the given query will be cached in the filter cache.
Query
, but giving to each matching document a nil score (score with a value of 0).
Thus, it will act as in a fq (filter query), and the given query will be cached in the filter cache.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.ametys.cms.search.query.Query
Query.LogicalOperator, Query.Operator
-
Field Summary
Fields inherited from interface org.ametys.cms.search.query.Query
BOOL_FILTER, BOOL_MUST, BOOL_MUST_NOT, BOOL_SHOULD
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Build the solr query string representing the Query object.Build the solr query representing the Query object.
The return type may be either String or Map<String, Object> following the Solr JSON Query DSL.toString
(int indent) Gets a representation of thisQuery
, for pretty-printing for logging and debugging purposesMethods inherited from class org.ametys.cms.search.query.AbstractWrapperQuery
equals, getSubQuery, hashCode
-
Constructor Details
-
ConstantNilScoreQuery
Build a ConstantNilScoreQuery object.- Parameters:
query
- The wrapped query
-
-
Method Details
-
build
Description copied from interface:Query
Build the solr query string representing the Query object.- Returns:
- the solr query string representing the Query object.
- Throws:
QuerySyntaxException
- if the query can't be built because of a syntax error.
-
buildAsJson
Description copied from interface:Query
Build the solr query representing the Query object.
The return type may be either String or Map<String, Object> following the Solr JSON Query DSL.- Returns:
- the solr query representing the Query object.
- Throws:
QuerySyntaxException
- if the query can't be built because of a syntax error.
-
toString
Description copied from interface:Query
Gets a representation of thisQuery
, for pretty-printing for logging and debugging purposes- Parameters:
indent
- The current indentation. Base indentation is 2 (for printing a sub-level)- Returns:
- a representation of this
Query
-