public static enum Activity.GatewayType extends Enum<Activity.GatewayType>
| Enum Constant and Description |
|---|
And
AND gateway, meaning that the activity will be executed only after all
incomming transitions have been followed.
|
Or
OR gateway (inclusive), meaning that the activity will be executed only after all
possible incomming transitions have been followed.
|
Xor
XOR gateway (exclusive), meaning that the activity will be executed for each
incomming transition.
|
| Modifier and Type | Method and Description |
|---|---|
static Activity.GatewayType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Activity.GatewayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Activity.GatewayType And
public static final Activity.GatewayType Or
public static final Activity.GatewayType Xor
public static Activity.GatewayType[] values()
for (Activity.GatewayType c : Activity.GatewayType.values()) System.out.println(c);
public static Activity.GatewayType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016 Eclipse Stardust. All Rights Reserved.