Enum DataRowBlockTrace.Field
- java.lang.Object
-
- java.lang.Enum<DataRowBlockTrace.Field>
-
- org.processmining.plugins.inductiveVisualMiner.dataanalysis.traceattributes.DataRowBlockTrace.Field
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DataRowBlockTrace.Field>
- Enclosing class:
- DataRowBlockTrace<C,P>
public static enum DataRowBlockTrace.Field extends java.lang.Enum<DataRowBlockTrace.Field>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description averagefirstlastmaxmedianminnumberOfDifferentValuesstandardDeviationtracesWithAttributetracesWithValueFalsetracesWithValueTrue
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataRowBlockTrace.FieldvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DataRowBlockTrace.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 DataRowBlockTrace.Field first
-
last
public static final DataRowBlockTrace.Field last
-
min
public static final DataRowBlockTrace.Field min
-
average
public static final DataRowBlockTrace.Field average
-
median
public static final DataRowBlockTrace.Field median
-
max
public static final DataRowBlockTrace.Field max
-
standardDeviation
public static final DataRowBlockTrace.Field standardDeviation
-
numberOfDifferentValues
public static final DataRowBlockTrace.Field numberOfDifferentValues
-
tracesWithAttribute
public static final DataRowBlockTrace.Field tracesWithAttribute
-
tracesWithValueTrue
public static final DataRowBlockTrace.Field tracesWithValueTrue
-
tracesWithValueFalse
public static final DataRowBlockTrace.Field tracesWithValueFalse
-
-
Method Detail
-
values
public static DataRowBlockTrace.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 (DataRowBlockTrace.Field c : DataRowBlockTrace.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 DataRowBlockTrace.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
-
-