public static enum GraphTransition.TransitionType extends Enum<GraphTransition.TransitionType>
| Enum Constant and Description |
|---|
DELETION |
INSERTION |
PHANTOM
A phantom transition is an artificial transition from the sink/final states to a single artificial sink/state.
|
REPLACEMENT |
| Modifier and Type | Method and Description |
|---|---|
static GraphTransition.TransitionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphTransition.TransitionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphTransition.TransitionType INSERTION
public static final GraphTransition.TransitionType DELETION
public static final GraphTransition.TransitionType REPLACEMENT
public static final GraphTransition.TransitionType PHANTOM
public static GraphTransition.TransitionType[] values()
for (GraphTransition.TransitionType c : GraphTransition.TransitionType.values()) System.out.println(c);
public static GraphTransition.TransitionType 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–2024. All rights reserved.