Enum LocalDotNode.NodeType
- java.lang.Object
-
- java.lang.Enum<LocalDotNode.NodeType>
-
- org.processmining.plugins.inductiveVisualMiner.visualisation.LocalDotNode.NodeType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<LocalDotNode.NodeType>
- Enclosing class:
- LocalDotNode
public static enum LocalDotNode.NodeType extends java.lang.Enum<LocalDotNode.NodeType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description activityconcurrentJoinconcurrentSplitinterleavedJoininterleavedSplitlogMoveActivityorJoinorSplitsinksourcexor
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LocalDotNode.NodeTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LocalDotNode.NodeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
source
public static final LocalDotNode.NodeType source
-
sink
public static final LocalDotNode.NodeType sink
-
activity
public static final LocalDotNode.NodeType activity
-
xor
public static final LocalDotNode.NodeType xor
-
concurrentSplit
public static final LocalDotNode.NodeType concurrentSplit
-
concurrentJoin
public static final LocalDotNode.NodeType concurrentJoin
-
interleavedSplit
public static final LocalDotNode.NodeType interleavedSplit
-
interleavedJoin
public static final LocalDotNode.NodeType interleavedJoin
-
orSplit
public static final LocalDotNode.NodeType orSplit
-
orJoin
public static final LocalDotNode.NodeType orJoin
-
logMoveActivity
public static final LocalDotNode.NodeType logMoveActivity
-
-
Method Detail
-
values
public static LocalDotNode.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 (LocalDotNode.NodeType c : LocalDotNode.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 LocalDotNode.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
-
-