Enum CaseNotionStrategy
- java.lang.Object
-
- java.lang.Enum<CaseNotionStrategy>
-
- org.processmining.OCLPMDiscovery.parameters.CaseNotionStrategy
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CaseNotionStrategy>
public enum CaseNotionStrategy extends java.lang.Enum<CaseNotionStrategy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DUMMYPE_CONNECTEDPE_LEADINGPE_LEADING_O1PE_LEADING_O2PE_LEADING_RELAXEDPE_LEADING_RELAXED_O1PE_LEADING_RELAXED_O2
-
Field Summary
Fields Modifier and Type Field Description static java.util.Set<CaseNotionStrategy>objectGraphNeededstatic java.util.Set<CaseNotionStrategy>typeSelectionNeeded
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()static CaseNotionStrategyvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CaseNotionStrategy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DUMMY
public static final CaseNotionStrategy DUMMY
-
PE_LEADING
public static final CaseNotionStrategy PE_LEADING
-
PE_LEADING_RELAXED
public static final CaseNotionStrategy PE_LEADING_RELAXED
-
PE_CONNECTED
public static final CaseNotionStrategy PE_CONNECTED
-
PE_LEADING_O1
public static final CaseNotionStrategy PE_LEADING_O1
-
PE_LEADING_RELAXED_O1
public static final CaseNotionStrategy PE_LEADING_RELAXED_O1
-
PE_LEADING_O2
public static final CaseNotionStrategy PE_LEADING_O2
-
PE_LEADING_RELAXED_O2
public static final CaseNotionStrategy PE_LEADING_RELAXED_O2
-
-
Field Detail
-
typeSelectionNeeded
public static final java.util.Set<CaseNotionStrategy> typeSelectionNeeded
-
objectGraphNeeded
public static final java.util.Set<CaseNotionStrategy> objectGraphNeeded
-
-
Method Detail
-
values
public static CaseNotionStrategy[] 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 (CaseNotionStrategy c : CaseNotionStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CaseNotionStrategy 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
-
getName
public java.lang.String getName()
-
-