Enum StochasticNet.ExecutionPolicy
- java.lang.Object
-
- java.lang.Enum<StochasticNet.ExecutionPolicy>
-
- org.processmining.models.graphbased.directed.petrinet.StochasticNet.ExecutionPolicy
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<StochasticNet.ExecutionPolicy>
- Enclosing interface:
- StochasticNet
public static enum StochasticNet.ExecutionPolicy extends java.lang.Enum<StochasticNet.ExecutionPolicy>
Execution policy of the network.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GLOBAL_PRESELECTIONRACE_AGE_MEMORYRACE_ENABLING_MEMORYRACE_RESAMPLING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StochasticNet.ExecutionPolicyfromString(java.lang.String value)java.lang.StringshortName()java.lang.StringtoString()static StochasticNet.ExecutionPolicyvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static StochasticNet.ExecutionPolicy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GLOBAL_PRESELECTION
public static final StochasticNet.ExecutionPolicy GLOBAL_PRESELECTION
-
RACE_RESAMPLING
public static final StochasticNet.ExecutionPolicy RACE_RESAMPLING
-
RACE_ENABLING_MEMORY
public static final StochasticNet.ExecutionPolicy RACE_ENABLING_MEMORY
-
RACE_AGE_MEMORY
public static final StochasticNet.ExecutionPolicy RACE_AGE_MEMORY
-
-
Method Detail
-
values
public static StochasticNet.ExecutionPolicy[] 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 (StochasticNet.ExecutionPolicy c : StochasticNet.ExecutionPolicy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StochasticNet.ExecutionPolicy 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
-
shortName
public java.lang.String shortName()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<StochasticNet.ExecutionPolicy>
-
fromString
public static StochasticNet.ExecutionPolicy fromString(java.lang.String value)
-
-