Package dataModels.flowNodeInstance
Enum FlowNodeInstance.FlowNodeInstanceSortableColumns
- java.lang.Object
-
- java.lang.Enum<FlowNodeInstance.FlowNodeInstanceSortableColumns>
-
- dataModels.flowNodeInstance.FlowNodeInstance.FlowNodeInstanceSortableColumns
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FlowNodeInstance.FlowNodeInstanceSortableColumns>
- Enclosing class:
- FlowNodeInstance
public static enum FlowNodeInstance.FlowNodeInstanceSortableColumns extends java.lang.Enum<FlowNodeInstance.FlowNodeInstanceSortableColumns>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FlowNodeInstance.FlowNodeInstanceSortableColumnsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FlowNodeInstance.FlowNodeInstanceSortableColumns[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
flowNodeInstanceId
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns flowNodeInstanceId
-
flowNodeId
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns flowNodeId
-
flowNodeName
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns flowNodeName
-
flowNodeLane
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns flowNodeLane
-
flowNodeType
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns flowNodeType
-
eventType
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns eventType
-
state
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns state
-
previousFlowNodeInstanceId
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns previousFlowNodeInstanceId
-
parentProcessInstanceId
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns parentProcessInstanceId
-
processDefinitionId
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns processDefinitionId
-
processModelId
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns processModelId
-
processInstanceId
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns processInstanceId
-
correlationId
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns correlationId
-
ownerId
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns ownerId
-
createdAt
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns createdAt
-
finishedAt
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns finishedAt
-
triggeredByFlowNodeInstance
public static final FlowNodeInstance.FlowNodeInstanceSortableColumns triggeredByFlowNodeInstance
-
-
Method Detail
-
values
public static FlowNodeInstance.FlowNodeInstanceSortableColumns[] 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 (FlowNodeInstance.FlowNodeInstanceSortableColumns c : FlowNodeInstance.FlowNodeInstanceSortableColumns.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlowNodeInstance.FlowNodeInstanceSortableColumns 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
-
-