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 aQuery
testing if contents have comments.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CommentQuery.CommentInclusion
The 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
-
-
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 String
build()
Build the solr query string representing the Query object.boolean
equals(Object obj)
int
hashCode()
-
-
-
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 withvalidated
comments, or only contents withnon validated
comments, orboth
)operator
- The operator. OnlyQuery.Operator.EQ
andQuery.Operator.NE
are allowed.
-
-
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.
-
-