Enum ConflictStrategyEnum
- java.lang.Object
-
- java.lang.Enum<ConflictStrategyEnum>
-
- org.processmining.extendedhybridminer.models.hybridpetrinet.conflictstrategy.ConflictStrategyEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ConflictStrategyEnum>
public enum ConflictStrategyEnum extends java.lang.Enum<ConflictStrategyEnum>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConflictStrategyEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ConflictStrategyEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT_CONFLICT_STRATEGY
public static final ConflictStrategyEnum DEFAULT_CONFLICT_STRATEGY
-
DEFAULT_CONFLICT_STRATEGY_OPT
public static final ConflictStrategyEnum DEFAULT_CONFLICT_STRATEGY_OPT
-
NO_CONFLICT_STRATEGY
public static final ConflictStrategyEnum NO_CONFLICT_STRATEGY
-
DEFAULT_CONFLICT_STRATEGY_OPT_NEW
public static final ConflictStrategyEnum DEFAULT_CONFLICT_STRATEGY_OPT_NEW
-
CONFLICT_STRATEGY_LONG_DEP
public static final ConflictStrategyEnum CONFLICT_STRATEGY_LONG_DEP
-
LONG_DEP_CONFLICT_STRATEGY
public static final ConflictStrategyEnum LONG_DEP_CONFLICT_STRATEGY
-
MINIMAL_PLACES
public static final ConflictStrategyEnum MINIMAL_PLACES
-
MINIMAL_PLACES_BACKWARDS
public static final ConflictStrategyEnum MINIMAL_PLACES_BACKWARDS
-
-
Method Detail
-
values
public static ConflictStrategyEnum[] 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 (ConflictStrategyEnum c : ConflictStrategyEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConflictStrategyEnum 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
-
-