Uses of Class
org.processmining.analysis.decisionmining.DecisionPoint

Packages that use DecisionPoint
org.processmining.analysis.decisionmining   
 

Uses of DecisionPoint in org.processmining.analysis.decisionmining
 

Subclasses of DecisionPoint in org.processmining.analysis.decisionmining
 class DecisionPointPetriNet
          A decision point that works with Petri net models.
 

Methods in org.processmining.analysis.decisionmining that return DecisionPoint
 DecisionPoint DecisionPointBuilder.getDecisionPointAt(int index)
          Retrieves the decision point at the given index.
 DecisionPoint DecisionPointBuilderPetriNet.getDecisionPointAt(int index)
          Retrieves the decision point at the given index.
 

Methods in org.processmining.analysis.decisionmining that return types with arguments of type DecisionPoint
 java.util.List<DecisionPoint> DecisionPointBuilder.getDecisionPoints()
          Retrieves the list of decision points for this model.
 

Methods in org.processmining.analysis.decisionmining with parameters of type DecisionPoint
 java.util.Set DecisionPointBuilder.getAllPredecessors(DecisionPoint refPoint)
          Retrieves the belonging log events of all preceding tasks with respect to the given decision point.
 java.util.Set DecisionPointBuilderPetriNet.getAllPredecessors(DecisionPoint refPoint)
          Retrieves the belonging log events of all preceding tasks with respect to the given decision point.
 java.util.Set DecisionPointBuilder.getDirectPredecessors(DecisionPoint refPoint)
          Retrieves the belonging log events of all directly preceding tasks with respect to the given decision point.
 java.util.Set DecisionPointBuilderPetriNet.getDirectPredecessors(DecisionPoint refPoint)
          Retrieves the belonging log events of all directly preceding tasks with respect to the given decision point.
 

Method parameters in org.processmining.analysis.decisionmining with type arguments of type DecisionPoint
 void DecisionAnalyser.analyse(java.util.List<DecisionPoint> decisionPoints, DecisionMiningLogReader log, HLPetriNet highLevelPN)
          Analyses the given list of decision points according to the context specified.
 boolean DecisionMiningLogReader.classifyLog(java.util.List<DecisionPoint> decisionPoints)
          Classifies the process instances according to the alternative branches that have been taken and records the results.
 void DecisionMiningLogTrace.initDiagnosticDataStructures(java.util.List<DecisionPoint> decisionPoints)
          Initializes the diagnostic entry for each branch of each decision point with 0.
 

Constructors in org.processmining.analysis.decisionmining with parameters of type DecisionPoint
DecisionCategory(DecisionPoint parent, int ID, java.util.ArrayList logEvents, ModelGraphVertex target)
          Creates a new decision category for the given decision point.
DecisionPointContextPetriNet(PetriNet model, Place place, DecisionPoint decisionPoint)
          Default constructor.