Enum PrototypeType
- java.lang.Object
-
- java.lang.Enum<PrototypeType>
-
- org.processmining.logfiltering.legacy.plugins.logfiltering.enumtypes.PrototypeType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PrototypeType>
public enum PrototypeType extends java.lang.Enum<PrototypeType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ActivityFastAlignmentFirstFrequencyKCenterApproxKMeansClusteringApproxLengthNormalRandomSamplingSimulation
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PrototypeTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PrototypeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Frequency
public static final PrototypeType Frequency
-
Random
public static final PrototypeType Random
-
Sampling
public static final PrototypeType Sampling
-
Simulation
public static final PrototypeType Simulation
-
First
public static final PrototypeType First
-
Activity
public static final PrototypeType Activity
-
KCenterApprox
public static final PrototypeType KCenterApprox
-
KMeansClusteringApprox
public static final PrototypeType KMeansClusteringApprox
-
FastAlignment
public static final PrototypeType FastAlignment
-
Length
public static final PrototypeType Length
-
Normal
public static final PrototypeType Normal
-
-
Method Detail
-
values
public static PrototypeType[] 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 (PrototypeType c : PrototypeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrototypeType 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
-
-