Class KeywordQuery
- java.lang.Object
-
- org.ametys.plugins.workspaces.search.query.KeywordQuery
-
- All Implemented Interfaces:
Query
public class KeywordQuery extends Object implements Query
Represents aQuery
testing the keywords property of a project resource.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.ametys.cms.search.query.Query
Query.LogicalOperator, Query.Operator
-
-
Constructor Summary
Constructors Constructor Description KeywordQuery(String... keywords)
Build a KeywordQuery to test if the keywords property is equal to one of the given keywordsKeywordQuery(Collection<String> keywords)
Build a KeywordQuery to test if the keywords property is equal to one of the given keywordsKeywordQuery(Query.Operator operator, String... keywords)
Build a KeywordQuery to test if the keywords property is equal or different to one of the given keywordsKeywordQuery(Query.Operator operator, Collection<String> keywords)
Build a KeywordQuery.
-
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
-
KeywordQuery
public KeywordQuery(String... keywords)
Build a KeywordQuery to test if the keywords property is equal to one of the given keywords- Parameters:
keywords
- the keywords.
-
KeywordQuery
public KeywordQuery(Collection<String> keywords)
Build a KeywordQuery to test if the keywords property is equal to one of the given keywords- Parameters:
keywords
- the keywords.
-
KeywordQuery
public KeywordQuery(Query.Operator operator, String... keywords)
Build a KeywordQuery to test if the keywords property is equal or different to one of the given keywords- Parameters:
operator
- the operator (equal ot not-equal)keywords
- the keywords.
-
KeywordQuery
public KeywordQuery(Query.Operator operator, Collection<String> keywords)
Build a KeywordQuery.- Parameters:
operator
- the operator.keywords
- the keywords.
-
-
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.
-
-