Enum SamplingType
- java.lang.Object
-
- java.lang.Enum<SamplingType>
-
- org.processmining.logfiltering.legacy.plugins.logfiltering.enumtypes.SamplingType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SamplingType>
public enum SamplingType extends java.lang.Enum<SamplingType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FrequencyHybridLastLongerPenaltyProtoTypingRandomSamplingWithLookingRandomSamplingWithoutLookingShorterSimilarStatistical
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SamplingTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SamplingType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Last
public static final SamplingType Last
-
Frequency
public static final SamplingType Frequency
-
Longer
public static final SamplingType Longer
-
Similar
public static final SamplingType Similar
-
Shorter
public static final SamplingType Shorter
-
Hybrid
public static final SamplingType Hybrid
-
Penalty
public static final SamplingType Penalty
-
RandomSamplingWithLooking
public static final SamplingType RandomSamplingWithLooking
-
RandomSamplingWithoutLooking
public static final SamplingType RandomSamplingWithoutLooking
-
Statistical
public static final SamplingType Statistical
-
ProtoTyping
public static final SamplingType ProtoTyping
-
-
Method Detail
-
values
public static SamplingType[] 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 (SamplingType c : SamplingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SamplingType 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
-
-