Package io.zeebe.protocol.record.value
Enum BpmnElementType
- java.lang.Object
-
- java.lang.Enum<BpmnElementType>
-
- io.zeebe.protocol.record.value.BpmnElementType
-
- All Implemented Interfaces:
Serializable,Comparable<BpmnElementType>
public enum BpmnElementType extends Enum<BpmnElementType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BpmnElementTypebpmnElementTypeFor(String elementTypeName)static BpmnElementTypevalueOf(String name)Returns the enum constant of this type with the specified name.static BpmnElementType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNSPECIFIED
public static final BpmnElementType UNSPECIFIED
-
PROCESS
public static final BpmnElementType PROCESS
-
SUB_PROCESS
public static final BpmnElementType SUB_PROCESS
-
EVENT_SUB_PROCESS
public static final BpmnElementType EVENT_SUB_PROCESS
-
START_EVENT
public static final BpmnElementType START_EVENT
-
INTERMEDIATE_CATCH_EVENT
public static final BpmnElementType INTERMEDIATE_CATCH_EVENT
-
BOUNDARY_EVENT
public static final BpmnElementType BOUNDARY_EVENT
-
END_EVENT
public static final BpmnElementType END_EVENT
-
SERVICE_TASK
public static final BpmnElementType SERVICE_TASK
-
RECEIVE_TASK
public static final BpmnElementType RECEIVE_TASK
-
USER_TASK
public static final BpmnElementType USER_TASK
-
EXCLUSIVE_GATEWAY
public static final BpmnElementType EXCLUSIVE_GATEWAY
-
PARALLEL_GATEWAY
public static final BpmnElementType PARALLEL_GATEWAY
-
EVENT_BASED_GATEWAY
public static final BpmnElementType EVENT_BASED_GATEWAY
-
SEQUENCE_FLOW
public static final BpmnElementType SEQUENCE_FLOW
-
MULTI_INSTANCE_BODY
public static final BpmnElementType MULTI_INSTANCE_BODY
-
CALL_ACTIVITY
public static final BpmnElementType CALL_ACTIVITY
-
TESTING_ONLY
public static final BpmnElementType TESTING_ONLY
-
-
Method Detail
-
values
public static BpmnElementType[] 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 (BpmnElementType c : BpmnElementType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BpmnElementType 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
-
bpmnElementTypeFor
public static BpmnElementType bpmnElementTypeFor(String elementTypeName)
-
-