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 aQuerytesting 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
-
-
Field Summary
Fields Modifier and Type Field Description private Query.LogicalOperator_logicalOperatorprivate Query.Operator_operatorprivate int[]_values
-
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 Stringbuild()Build the solr query string representing the Query object.booleanequals(Object obj)Query.LogicalOperatorgetLogicalOperator()Get the logicalOperator.Query.OperatorgetOperator()Get the operator.int[]getValues()Get the values.inthashCode()
-
-
-
Field Detail
-
_operator
private Query.Operator _operator
-
_values
private int[] _values
-
_logicalOperator
private Query.LogicalOperator _logicalOperator
-
-
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: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.
-
-