Package org.ametys.cms.search.query
Class CommentQuery
- java.lang.Object
-
- org.ametys.cms.search.query.CommentQuery
-
- All Implemented Interfaces:
Query
public class CommentQuery extends Object implements Query
Represents aQuerytesting if contents have comments.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCommentQuery.CommentInclusionThe type (validated, non validated or both) of comments to include forCommentQuery-
Nested classes/interfaces inherited from interface org.ametys.cms.search.query.Query
Query.LogicalOperator, Query.Operator
-
-
Field Summary
Fields Modifier and Type Field Description private CommentQuery.CommentInclusion_commentInclusionprivate Query.Operator_operator
-
Constructor Summary
Constructors Constructor Description CommentQuery(CommentQuery.CommentInclusion commentInclusion, Query.Operator operator)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringbuild()Build the solr query string representing the Query object.booleanequals(Object obj)inthashCode()
-
-
-
Field Detail
-
_commentInclusion
private CommentQuery.CommentInclusion _commentInclusion
-
_operator
private Query.Operator _operator
-
-
Constructor Detail
-
CommentQuery
public CommentQuery(CommentQuery.CommentInclusion commentInclusion, Query.Operator operator)
Constructor- Parameters:
commentInclusion- The type of comments to include in search (request only contents withvalidatedcomments, or only contents withnon validatedcomments, orboth)operator- The operator. OnlyQuery.Operator.EQandQuery.Operator.NEare allowed.
-
-
Method Detail
-
build
public String build() throws QuerySyntaxException
Description copied from interface:QueryBuild the solr query string representing the Query object.- Specified by:
buildin interfaceQuery- Returns:
- the solr query string representing the Query object.
- Throws:
QuerySyntaxException- if the query can't be built because of a syntax error.
-
-