Package org.ametys.cms.search.query
Class WorkflowStepQuery
- java.lang.Object
-
- org.ametys.cms.search.query.WorkflowStepQuery
-
- All Implemented Interfaces:
Query
public class WorkflowStepQuery extends Object implements Query
Represents aQuery
testing the current workflow step of a content. It can only be used to search on the current step.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.ametys.cms.search.query.Query
Query.LogicalOperator, Query.Operator
-
-
Constructor Summary
Constructors Constructor Description WorkflowStepQuery(int value)
Build a WorkflowStepQuery.WorkflowStepQuery(int... values)
Build a WorkflowStepQuery.WorkflowStepQuery(Query.Operator operator, int value)
Build a WorkflowStepQuery.WorkflowStepQuery(Query.Operator operator, int... values)
Build a WorkflowStepQuery.WorkflowStepQuery(Query.Operator operator, Query.LogicalOperator logicalOperator, int... values)
Build a WorkflowStepQuery.
-
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)
Query.LogicalOperator
getLogicalOperator()
Get the logicalOperator.Query.Operator
getOperator()
Get the operator.int[]
getValues()
Get the values.int
hashCode()
-
-
-
Constructor Detail
-
WorkflowStepQuery
public WorkflowStepQuery(int value)
Build a WorkflowStepQuery.- Parameters:
value
- the step id to test.
-
WorkflowStepQuery
public WorkflowStepQuery(int... values)
Build a WorkflowStepQuery.- Parameters:
values
- the step IDs to test.
-
WorkflowStepQuery
public WorkflowStepQuery(Query.Operator operator, int value)
Build a WorkflowStepQuery.- Parameters:
operator
- the operator.value
- the step id to test.
-
WorkflowStepQuery
public WorkflowStepQuery(Query.Operator operator, int... values)
Build a WorkflowStepQuery.- Parameters:
operator
- the operator.values
- the step IDs to test.
-
WorkflowStepQuery
public WorkflowStepQuery(Query.Operator operator, Query.LogicalOperator logicalOperator, int... values)
Build a WorkflowStepQuery.- Parameters:
operator
- the operator.logicalOperator
- the logical operator.values
- the step IDs to test.
-
-
Method Detail
-
getOperator
public Query.Operator getOperator()
Get the operator.- Returns:
- the operator
-
getValues
public int[] getValues()
Get the values.- Returns:
- the values
-
getLogicalOperator
public Query.LogicalOperator getLogicalOperator()
Get the logicalOperator.- Returns:
- the logicalOperator
-
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.
-
-