Interface InductiveMinerVariant
-
- All Known Implementing Classes:
MiningParametersIM,MiningParametersIMInfrequent,MiningParametersIMInfrequentLifeCycle,MiningParametersIMInfrequentPartialTraces,MiningParametersIMInfrequentPartialTracesAli,MiningParametersIMLifeCycle,MiningParametersIMPartialTraces
public interface InductiveMinerVariantInterface to ease the display of Inductive Miner variants.- Author:
- sander
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDoi()MiningParametersAbstractgetMiningParameters()intgetWarningThreshold()booleanhasFitness()booleanhasNoise()booleannoNoiseImpliesFitness()java.lang.StringtoString()
-
-
-
Method Detail
-
toString
java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object- Returns:
- the name of this variant.
-
hasFitness
boolean hasFitness()
- Returns:
- whether this variant guarantees fitness.
-
hasNoise
boolean hasNoise()
-
noNoiseImpliesFitness
boolean noNoiseImpliesFitness()
- Returns:
- whether if the noise threshold is set to 0, fitness is guaranteed.
-
getMiningParameters
MiningParametersAbstract getMiningParameters()
- Returns:
- A mining parameters object to perform the discovery. Must return the same object everytime called.
-
getWarningThreshold
int getWarningThreshold()
- Returns:
- Give a warning if there more than the returned number of activities, or a negative number if such a warning is not necessary.
-
getDoi
java.lang.String getDoi()
- Returns:
- A doi for more information or null.
-
-