Enum CandidatePlaceIteratorEnum
- java.lang.Object
-
- java.lang.Enum<CandidatePlaceIteratorEnum>
-
- org.processmining.extendedhybridminer.models.hybridpetrinet.candidateplaceiterator.CandidatePlaceIteratorEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CandidatePlaceIteratorEnum>
public enum CandidatePlaceIteratorEnum extends java.lang.Enum<CandidatePlaceIteratorEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EDGE_NUMBEREDGE_NUMBER_OPTEDGE_NUMBER_OPT_NEWEDGES_FIRSTMINIMALMINIMAL_BACKWARDSOUTPUT_THEN_INPUT_NUMBEROUTPUT_THEN_INPUT_NUMBER_OPT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CandidatePlaceIteratorEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CandidatePlaceIteratorEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OUTPUT_THEN_INPUT_NUMBER
public static final CandidatePlaceIteratorEnum OUTPUT_THEN_INPUT_NUMBER
-
OUTPUT_THEN_INPUT_NUMBER_OPT
public static final CandidatePlaceIteratorEnum OUTPUT_THEN_INPUT_NUMBER_OPT
-
EDGE_NUMBER
public static final CandidatePlaceIteratorEnum EDGE_NUMBER
-
EDGE_NUMBER_OPT
public static final CandidatePlaceIteratorEnum EDGE_NUMBER_OPT
-
EDGE_NUMBER_OPT_NEW
public static final CandidatePlaceIteratorEnum EDGE_NUMBER_OPT_NEW
-
EDGES_FIRST
public static final CandidatePlaceIteratorEnum EDGES_FIRST
-
MINIMAL
public static final CandidatePlaceIteratorEnum MINIMAL
-
MINIMAL_BACKWARDS
public static final CandidatePlaceIteratorEnum MINIMAL_BACKWARDS
-
-
Method Detail
-
values
public static CandidatePlaceIteratorEnum[] 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 (CandidatePlaceIteratorEnum c : CandidatePlaceIteratorEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CandidatePlaceIteratorEnum 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
-
-