Enum TSConversions
- java.lang.Object
-
- java.lang.Enum<TSConversions>
-
- org.processmining.plugins.transitionsystem.converter.util.TSConversions
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TSConversions>
public enum TSConversions extends java.lang.Enum<TSConversions>
Possible conversions on a transition system.- Author:
- HVERBEEK
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXTENDAdds missing transitions in incomplete diamond structures.KILLSELFLOOPSRemoves self loops from the transition system.MERGEBYFUTUREMerges states which have identical future.MERGEBYHISTORYMerges states which have identical history.MERGEBYINPUTMerges states which have identical influx labels.MERGEBYOUTPUTMerges states which have identical outflux labels.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetLabel()Returns the label of the conversion.static TSConversionsvalueOf(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.
-
-
-
Enum Constant Detail
-
KILLSELFLOOPS
public static final TSConversions KILLSELFLOOPS
Removes self loops from the transition system.
-
EXTEND
public static final TSConversions EXTEND
Adds missing transitions in incomplete diamond structures.
-
MERGEBYOUTPUT
public static final TSConversions MERGEBYOUTPUT
Merges states which have identical outflux labels.
-
MERGEBYINPUT
public static final TSConversions MERGEBYINPUT
Merges states which have identical influx labels.
-
MERGEBYFUTURE
public static final TSConversions MERGEBYFUTURE
Merges states which have identical future.
-
MERGEBYHISTORY
public static final TSConversions MERGEBYHISTORY
Merges states which have identical history.
-
-
Method Detail
-
values
public static TSConversions[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TSConversions c : TSConversions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TSConversions valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getLabel
public java.lang.String getLabel()
Returns the label of the conversion.- Returns:
- The label of the conversion.
-
-