Interface LPMDiscoveryResult
-
- All Superinterfaces:
Exportable<LPMDiscoveryResult>
- All Known Subinterfaces:
MultipleLPMDiscoveryResults
- All Known Implementing Classes:
ClusteringLPMResultGroup,FromFileLPMDiscoveryResult,LPMResult,LPMResultGroup,SameActivityLPMResultGroup,StandardLPMDiscoveryResult,TwoStandardLPMDiscoveryResults,WindowCoverageLPMResultGroup
public interface LPMDiscoveryResult extends Exportable<LPMDiscoveryResult>
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddAdditionalResults(java.lang.String key, java.lang.Object additionalResult)static LPMDiscoveryResultfromFile(java.lang.String filePath)java.util.Map<java.lang.String,java.lang.Object>getAdditionalResults()java.util.Collection<LocalProcessModel>getAllLPMs()LPMDiscoveryConfiggetConfig()LPMDiscoveryInputgetInput()Returns the input for which this LPMDiscoveryResult was computed.voidkeep(int lpmCount)voidsetInput(LPMDiscoveryInput input)Sets the input for which this LPMDiscoveryResult was computed.-
Methods inherited from interface org.processmining.placebasedlpmdiscovery.model.exporting.Exportable
export
-
-
-
-
Method Detail
-
getAllLPMs
java.util.Collection<LocalProcessModel> getAllLPMs()
-
getInput
LPMDiscoveryInput getInput()
Returns the input for which this LPMDiscoveryResult was computed. This is needed so that postprocessing steps and advanced filtration strategies or groupings could be executed.
-
setInput
void setInput(LPMDiscoveryInput input)
Sets the input for which this LPMDiscoveryResult was computed. This is needed so that postprocessing steps and advanced filtration strategies or groupings could be executed.
-
getConfig
LPMDiscoveryConfig getConfig()
-
keep
void keep(int lpmCount)
-
fromFile
static LPMDiscoveryResult fromFile(java.lang.String filePath) throws java.io.IOException
- Throws:
java.io.IOException
-
addAdditionalResults
void addAdditionalResults(java.lang.String key, java.lang.Object additionalResult)
-
getAdditionalResults
java.util.Map<java.lang.String,java.lang.Object> getAdditionalResults()
-
-