Enum AbstractMetric.MetricProperty
- java.lang.Object
-
- java.lang.Enum<AbstractMetric.MetricProperty>
-
- org.processmining.partialorder.zexperiment.metric.AbstractMetric.MetricProperty
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AbstractMetric.MetricProperty>
- Enclosing class:
- AbstractMetric
public static enum AbstractMetric.MetricProperty extends java.lang.Enum<AbstractMetric.MetricProperty>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FN_DFOLLOWEDFN_LOG_MOVEFN_MODEL_MOVEFN_SYNC_MOVEFP_DFOLLOWEDFP_LOG_MOVEFP_MODEL_MOVEFP_SYNC_MOVETP_DFOLLOWEDTP_LOG_MOVETP_MODEL_MOVETP_SYNC_MOVE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractMetric.MetricPropertyvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AbstractMetric.MetricProperty[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TP_SYNC_MOVE
public static final AbstractMetric.MetricProperty TP_SYNC_MOVE
-
FP_SYNC_MOVE
public static final AbstractMetric.MetricProperty FP_SYNC_MOVE
-
FN_SYNC_MOVE
public static final AbstractMetric.MetricProperty FN_SYNC_MOVE
-
TP_LOG_MOVE
public static final AbstractMetric.MetricProperty TP_LOG_MOVE
-
FP_LOG_MOVE
public static final AbstractMetric.MetricProperty FP_LOG_MOVE
-
FN_LOG_MOVE
public static final AbstractMetric.MetricProperty FN_LOG_MOVE
-
TP_MODEL_MOVE
public static final AbstractMetric.MetricProperty TP_MODEL_MOVE
-
FP_MODEL_MOVE
public static final AbstractMetric.MetricProperty FP_MODEL_MOVE
-
FN_MODEL_MOVE
public static final AbstractMetric.MetricProperty FN_MODEL_MOVE
-
TP_DFOLLOWED
public static final AbstractMetric.MetricProperty TP_DFOLLOWED
-
FP_DFOLLOWED
public static final AbstractMetric.MetricProperty FP_DFOLLOWED
-
FN_DFOLLOWED
public static final AbstractMetric.MetricProperty FN_DFOLLOWED
-
-
Method Detail
-
values
public static AbstractMetric.MetricProperty[] 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 (AbstractMetric.MetricProperty c : AbstractMetric.MetricProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractMetric.MetricProperty 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
-
-