public static enum WorkflowStepExpression.LogicalOperator extends Enum<WorkflowStepExpression.LogicalOperator>
| Enum Constant and Description | 
|---|
AND
Logical operator AND 
 | 
OR
Logical operator OR 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static WorkflowStepExpression.LogicalOperator | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static WorkflowStepExpression.LogicalOperator[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final WorkflowStepExpression.LogicalOperator AND
public static final WorkflowStepExpression.LogicalOperator OR
public static WorkflowStepExpression.LogicalOperator[] values()
for (WorkflowStepExpression.LogicalOperator c : WorkflowStepExpression.LogicalOperator.values()) System.out.println(c);
public static WorkflowStepExpression.LogicalOperator valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null