Enum DataRowBlockEventData.Field
- java.lang.Object
-
- java.lang.Enum<DataRowBlockEventData.Field>
-
- org.processmining.plugins.inductiveVisualMiner.dataanalysis.eventattributes.DataRowBlockEventData.Field
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DataRowBlockEventData.Field>
- Enclosing class:
- DataRowBlockEventData<C,P>
public static enum DataRowBlockEventData.Field extends java.lang.Enum<DataRowBlockEventData.Field>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataRowBlockEventData.FieldvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DataRowBlockEventData.Field[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
first
public static final DataRowBlockEventData.Field first
-
last
public static final DataRowBlockEventData.Field last
-
min
public static final DataRowBlockEventData.Field min
-
average
public static final DataRowBlockEventData.Field average
-
median
public static final DataRowBlockEventData.Field median
-
max
public static final DataRowBlockEventData.Field max
-
standardDeviation
public static final DataRowBlockEventData.Field standardDeviation
-
numberOfDifferentValues
public static final DataRowBlockEventData.Field numberOfDifferentValues
-
numberOfEventsWithAttribute
public static final DataRowBlockEventData.Field numberOfEventsWithAttribute
-
numberOfTracesWithEventWithAttribute
public static final DataRowBlockEventData.Field numberOfTracesWithEventWithAttribute
-
numberOfEventsWithoutAttribute
public static final DataRowBlockEventData.Field numberOfEventsWithoutAttribute
-
numberOfTracesWithEventWithoutAttribute
public static final DataRowBlockEventData.Field numberOfTracesWithEventWithoutAttribute
-
numberOfEventsWithValueTrue
public static final DataRowBlockEventData.Field numberOfEventsWithValueTrue
-
numberOfEventsWithValueFalse
public static final DataRowBlockEventData.Field numberOfEventsWithValueFalse
-
-
Method Detail
-
values
public static DataRowBlockEventData.Field[] 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 (DataRowBlockEventData.Field c : DataRowBlockEventData.Field.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataRowBlockEventData.Field 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
-
-