Enum PatternInfoField
- java.lang.Object
-
- java.lang.Enum<PatternInfoField>
-
- org.processmining.lip.model.pattern.metric.PatternInfoField
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PatternInfoField>
public enum PatternInfoField extends java.lang.Enum<PatternInfoField>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PatternInfoFieldvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PatternInfoField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Pnum
public static final PatternInfoField Pnum
-
CoreEvt
public static final PatternInfoField CoreEvt
-
Preds
public static final PatternInfoField Preds
-
Concs
public static final PatternInfoField Concs
-
Succs
public static final PatternInfoField Succs
-
P_supp
public static final PatternInfoField P_supp
-
P_conf
public static final PatternInfoField P_conf
-
C_supp
public static final PatternInfoField C_supp
-
C_conf
public static final PatternInfoField C_conf
-
C_cove
public static final PatternInfoField C_cove
-
C_num
public static final PatternInfoField C_num
-
P_sigf
public static final PatternInfoField P_sigf
-
-
Method Detail
-
values
public static PatternInfoField[] 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 (PatternInfoField c : PatternInfoField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PatternInfoField 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
-
-