Enum EfficientTree.NodeType
- java.lang.Object
-
- java.lang.Enum<EfficientTree.NodeType>
-
- org.processmining.plugins.InductiveMiner.efficienttree.EfficientTree.NodeType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EfficientTree.NodeType>
- Enclosing interface:
- EfficientTree
public static enum EfficientTree.NodeType extends java.lang.Enum<EfficientTree.NodeType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description activityconcurrentinterleavedlooporsequenceskiptauxor
-
Field Summary
Fields Modifier and Type Field Description intcode
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EfficientTree.NodeTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EfficientTree.NodeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
tau
public static final EfficientTree.NodeType tau
-
activity
public static final EfficientTree.NodeType activity
-
xor
public static final EfficientTree.NodeType xor
-
sequence
public static final EfficientTree.NodeType sequence
-
interleaved
public static final EfficientTree.NodeType interleaved
-
concurrent
public static final EfficientTree.NodeType concurrent
-
or
public static final EfficientTree.NodeType or
-
loop
public static final EfficientTree.NodeType loop
-
skip
public static final EfficientTree.NodeType skip
-
-
Method Detail
-
values
public static EfficientTree.NodeType[] 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 (EfficientTree.NodeType c : EfficientTree.NodeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EfficientTree.NodeType 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
-
-