Enum ProcessInstanceField
- java.lang.Object
-
- java.lang.Enum<ProcessInstanceField>
-
- org.kie.server.api.model.definition.ProcessInstanceField
-
- All Implemented Interfaces:
Serializable,Comparable<ProcessInstanceField>
public enum ProcessInstanceField extends Enum<ProcessInstanceField>
ProcessInstance fields. These are the filterable fields in our ProcessInstanceQuery API.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CORRELATIONKEYDURATIONEND_DATEEXTERNALIDIDOUTCOMEPARENTPROCESSINSTANCEIDPROCESSIDPROCESSINSTANCEDESCRIPTIONPROCESSINSTANCEIDPROCESSNAMEPROCESSTYPEPROCESSVERSIONSTART_DATESTATUSUSER_IDENTITY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProcessInstanceFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static ProcessInstanceField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID
public static final ProcessInstanceField ID
-
CORRELATIONKEY
public static final ProcessInstanceField CORRELATIONKEY
-
DURATION
public static final ProcessInstanceField DURATION
-
END_DATE
public static final ProcessInstanceField END_DATE
-
EXTERNALID
public static final ProcessInstanceField EXTERNALID
-
USER_IDENTITY
public static final ProcessInstanceField USER_IDENTITY
-
OUTCOME
public static final ProcessInstanceField OUTCOME
-
PARENTPROCESSINSTANCEID
public static final ProcessInstanceField PARENTPROCESSINSTANCEID
-
PROCESSID
public static final ProcessInstanceField PROCESSID
-
PROCESSINSTANCEDESCRIPTION
public static final ProcessInstanceField PROCESSINSTANCEDESCRIPTION
-
PROCESSINSTANCEID
public static final ProcessInstanceField PROCESSINSTANCEID
-
PROCESSNAME
public static final ProcessInstanceField PROCESSNAME
-
PROCESSTYPE
public static final ProcessInstanceField PROCESSTYPE
-
PROCESSVERSION
public static final ProcessInstanceField PROCESSVERSION
-
START_DATE
public static final ProcessInstanceField START_DATE
-
STATUS
public static final ProcessInstanceField STATUS
-
-
Method Detail
-
values
public static ProcessInstanceField[] 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 (ProcessInstanceField c : ProcessInstanceField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessInstanceField valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-