Enum PTraceParameter.PTraceType
- java.lang.Object
-
- java.lang.Enum<PTraceParameter.PTraceType>
-
- org.processmining.partialorder.ptrace.param.PTraceParameter.PTraceType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PTraceParameter.PTraceType>
- Enclosing class:
- PTraceParameter
public static enum PTraceParameter.PTraceType extends java.lang.Enum<PTraceParameter.PTraceType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Data_DependencyNon_Equal_Timestamp_DependencyNon_Same_Day_DependencyPLog_ExtensionSequential_Dependency
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static PTraceParameter.PTraceTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PTraceParameter.PTraceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Sequential_Dependency
public static final PTraceParameter.PTraceType Sequential_Dependency
-
Non_Equal_Timestamp_Dependency
public static final PTraceParameter.PTraceType Non_Equal_Timestamp_Dependency
-
Non_Same_Day_Dependency
public static final PTraceParameter.PTraceType Non_Same_Day_Dependency
-
Data_Dependency
public static final PTraceParameter.PTraceType Data_Dependency
-
PLog_Extension
public static final PTraceParameter.PTraceType PLog_Extension
-
-
Method Detail
-
values
public static PTraceParameter.PTraceType[] 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 (PTraceParameter.PTraceType c : PTraceParameter.PTraceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PTraceParameter.PTraceType 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<PTraceParameter.PTraceType>
-
-