Package com.priint.pubserver.bpm.model
Enum ProcessVariableOperator
- java.lang.Object
-
- java.lang.Enum<ProcessVariableOperator>
-
- com.priint.pubserver.bpm.model.ProcessVariableOperator
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ProcessVariableOperator>
public enum ProcessVariableOperator extends java.lang.Enum<ProcessVariableOperator>
Enum represents operators for process variableTaskQueryDto.addProcessVariable(ProcessVariableOperator, String, String)
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProcessVariableOperatorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ProcessVariableOperator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
eq
public static final ProcessVariableOperator eq
-
neq
public static final ProcessVariableOperator neq
-
gt
public static final ProcessVariableOperator gt
-
gteq
public static final ProcessVariableOperator gteq
-
lt
public static final ProcessVariableOperator lt
-
lteq
public static final ProcessVariableOperator lteq
-
like
public static final ProcessVariableOperator like
-
notLike
public static final ProcessVariableOperator notLike
-
-
Method Detail
-
values
public static ProcessVariableOperator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ProcessVariableOperator c : ProcessVariableOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessVariableOperator valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-