Enum CandidatePlaceSelectionStrategyEnum
- java.lang.Object
-
- java.lang.Enum<CandidatePlaceSelectionStrategyEnum>
-
- org.processmining.hybridminer.models.hybridpetrinet.candidateplacestrategy.CandidatePlaceSelectionStrategyEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CandidatePlaceSelectionStrategyEnum>
public enum CandidatePlaceSelectionStrategyEnum extends java.lang.Enum<CandidatePlaceSelectionStrategyEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INPUT_AND_OUTPUT_BOUNDINPUT_PLUS_OUTPUT_BOUNDSPLIT_JOIN_ONLY_BOUND
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CandidatePlaceSelectionStrategyEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CandidatePlaceSelectionStrategyEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INPUT_PLUS_OUTPUT_BOUND
public static final CandidatePlaceSelectionStrategyEnum INPUT_PLUS_OUTPUT_BOUND
-
INPUT_AND_OUTPUT_BOUND
public static final CandidatePlaceSelectionStrategyEnum INPUT_AND_OUTPUT_BOUND
-
SPLIT_JOIN_ONLY_BOUND
public static final CandidatePlaceSelectionStrategyEnum SPLIT_JOIN_ONLY_BOUND
-
-
Method Detail
-
values
public static CandidatePlaceSelectionStrategyEnum[] 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 (CandidatePlaceSelectionStrategyEnum c : CandidatePlaceSelectionStrategyEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CandidatePlaceSelectionStrategyEnum 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
-
-