Package org.ametys.web.search.query
Class PageIdQuery
- java.lang.Object
 - 
- org.ametys.web.search.query.PageIdQuery
 
 
- 
- All Implemented Interfaces:
 Query
public class PageIdQuery extends Object implements Query
Represents aQuerytesting the page property of a content or resource. 
- 
- 
Nested Class Summary
- 
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 List<String>_idsprivate Query.Operator_operator 
- 
Constructor Summary
Constructors Constructor Description PageIdQuery(String... ids)Build a PageIdQuery.PageIdQuery(Collection<String> ids)Build a PageIdQuery.PageIdQuery(Query.Operator operator, String... ids)Build a PageIdQuery.PageIdQuery(Query.Operator operator, Collection<String> ids)Build a SiteQuery. 
- 
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
- 
_operator
private Query.Operator _operator
 
 - 
 
- 
Constructor Detail
- 
PageIdQuery
public PageIdQuery(String... ids)
Build a PageIdQuery.- Parameters:
 ids- the page ids.
 
- 
PageIdQuery
public PageIdQuery(Collection<String> ids)
Build a PageIdQuery.- Parameters:
 ids- the page ids.
 
- 
PageIdQuery
public PageIdQuery(Query.Operator operator, String... ids)
Build a PageIdQuery.- Parameters:
 operator- the operator.ids- the page ids.
 
- 
PageIdQuery
public PageIdQuery(Query.Operator operator, Collection<String> ids)
Build a SiteQuery.- Parameters:
 operator- the operator.ids- the site names.
 
 - 
 
- 
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.
 
 - 
 
 -