public enum GatewayTypeCode extends java.lang.Enum<GatewayTypeCode>
Enum Constant and Description |
---|
ComplexGateway |
DatabasedGateway |
EventBasedGateway |
ExclusiveGateway |
InclusiveGateway |
ParallelGateway |
Modifier and Type | Method and Description |
---|---|
static GatewayTypeCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GatewayTypeCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GatewayTypeCode ParallelGateway
public static final GatewayTypeCode ExclusiveGateway
public static final GatewayTypeCode ComplexGateway
public static final GatewayTypeCode DatabasedGateway
public static final GatewayTypeCode EventBasedGateway
public static final GatewayTypeCode InclusiveGateway
public static GatewayTypeCode[] values()
for (GatewayTypeCode c : GatewayTypeCode.values()) System.out.println(c);
public static GatewayTypeCode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null