Package org.ametys.cms.search.query
Class IsolateQuery
- java.lang.Object
-
- org.ametys.cms.search.query.IsolateQuery
-
- All Implemented Interfaces:
Query
public class IsolateQuery extends Object implements Query
Isolate a query by wrapping it. Used for special cases to force Solr to distinguish specific parts of the global query.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.ametys.cms.search.query.Query
Query.LogicalOperator, Query.Operator
-
-
Constructor Summary
Constructors Constructor Description IsolateQuery(Query query)
Isolate a query.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
build()
Build the solr query string representing the Query object.
-
-
-
Constructor Detail
-
IsolateQuery
public IsolateQuery(Query query)
Isolate a query.- Parameters:
query
- the wrappedQuery
.
-
-
Method Detail
-
build
public String build() throws QuerySyntaxException
Description copied from interface:Query
Build the solr query string representing the Query object.- Specified by:
build
in interfaceQuery
- Returns:
- the solr query string representing the Query object.
- Throws:
QuerySyntaxException
- if the query can't be built because of a syntax error.
-
-