Package org.ametys.web.search.query
Class OrphanQuery
- java.lang.Object
-
- org.ametys.web.search.query.OrphanQuery
-
- All Implemented Interfaces:
Query
public class OrphanQuery extends Object implements Query
Represents aQuery
testing the orphan status of a content.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.ametys.cms.search.query.Query
Query.LogicalOperator, Query.Operator
-
-
Constructor Summary
Constructors Constructor Description OrphanQuery()
Create an OrphanQuery.OrphanQuery(boolean orphan)
Create an OrphanQuery.OrphanQuery(boolean orphan, Query.Operator operator)
Create an OrphanQuery.
-
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
-
OrphanQuery
public OrphanQuery()
Create an OrphanQuery.
-
OrphanQuery
public OrphanQuery(boolean orphan)
Create an OrphanQuery.- Parameters:
orphan
-true
to get only orphan contents,false
to get only non-orphan contents.
-
OrphanQuery
public OrphanQuery(boolean orphan, Query.Operator operator)
Create an OrphanQuery.- Parameters:
orphan
-true
to get only orphan contents,false
to get only non-orphan contents.operator
- the operator.
-
-
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.
-
-