Enum FrameworkBridge.BridgedHeuristics
- java.lang.Object
-
- java.lang.Enum<FrameworkBridge.BridgedHeuristics>
-
- org.processmining.specpp.prom.alg.FrameworkBridge.BridgedHeuristics
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<FrameworkBridge.BridgedHeuristics>
- Enclosing class:
- FrameworkBridge
public static enum FrameworkBridge.BridgedHeuristics extends java.lang.Enum<FrameworkBridge.BridgedHeuristics>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BFS_EmulationDFS_EmulationPlaceInterestingness
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description FrameworkBridge.AnnotatedTreeHeuristicgetBridge()java.lang.StringtoString()static FrameworkBridge.BridgedHeuristicsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static FrameworkBridge.BridgedHeuristics[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PlaceInterestingness
public static final FrameworkBridge.BridgedHeuristics PlaceInterestingness
-
BFS_Emulation
public static final FrameworkBridge.BridgedHeuristics BFS_Emulation
-
DFS_Emulation
public static final FrameworkBridge.BridgedHeuristics DFS_Emulation
-
-
Method Detail
-
values
public static FrameworkBridge.BridgedHeuristics[] 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 (FrameworkBridge.BridgedHeuristics c : FrameworkBridge.BridgedHeuristics.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FrameworkBridge.BridgedHeuristics 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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<FrameworkBridge.BridgedHeuristics>
-
getBridge
public FrameworkBridge.AnnotatedTreeHeuristic getBridge()
-
-