public enum ConfigurableGraphElementOption extends java.lang.Enum<ConfigurableGraphElementOption>
| Enum Constant and Description |
|---|
ALLOW
The transition remains in the Petri net unchanged.
|
BLOCK
The transition is removed from the Petri net.
|
SKIP
The transition is made invisible in the Petri net.
|
| Modifier and Type | Method and Description |
|---|---|
static ConfigurableGraphElementOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurableGraphElementOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurableGraphElementOption ALLOW
public static final ConfigurableGraphElementOption BLOCK
public static final ConfigurableGraphElementOption SKIP
Transition.public static ConfigurableGraphElementOption[] values()
for (ConfigurableGraphElementOption c : ConfigurableGraphElementOption.values()) System.out.println(c);
public static ConfigurableGraphElementOption 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