public enum TSConversions extends java.lang.Enum<TSConversions>
Enum Constant and Description |
---|
EXTEND
Adds missing transitions in incomplete diamond structures.
|
KILLSELFLOOPS
Removes self loops from the transition system.
|
MERGEBYINPUT
Merges states which have identical influx labels.
|
MERGEBYOUTPUT
Merges states which have identical outflux labels.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLabel()
Returns the label of the conversion.
|
static TSConversions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TSConversions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TSConversions KILLSELFLOOPS
public static final TSConversions EXTEND
public static final TSConversions MERGEBYOUTPUT
public static final TSConversions MERGEBYINPUT
public static TSConversions[] values()
for (TSConversions c : TSConversions.values()) System.out.println(c);
public static TSConversions 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 nullpublic java.lang.String getLabel()