Uses of Class
org.processmining.analysis.conformance.DiagnosticLogEvent

Packages that use DiagnosticLogEvent
org.processmining.analysis.conformance Contains classes related to the Conformance Analysis Plugin. 
 

Uses of DiagnosticLogEvent in org.processmining.analysis.conformance
 

Methods in org.processmining.analysis.conformance that return DiagnosticLogEvent
 DiagnosticLogEvent DiagnosticLogEventRelation.getDiagnosticLogEvent(java.lang.String namePlusType)
          Gets the specified log event from the internal list of log events.
 

Methods in org.processmining.analysis.conformance that return types with arguments of type DiagnosticLogEvent
 java.util.Set<DiagnosticLogEvent> DiagnosticLogEvent.getAlwaysRelationsBackwards(int threshold)
          Retrieves all those log events that always happened (some time) before this one.
 java.util.Set<DiagnosticLogEvent> DiagnosticLogEvent.getAlwaysRelationsForwards(int threshold)
          Retrieves all those log events that always happened (some time) after this one.
 java.util.Collection<DiagnosticLogEvent> DiagnosticLogEventRelation.getDiagnosticLogEvents()
          Retrieves all diagnostic log events contained in this relation.
 java.util.Set<DiagnosticLogEvent> DiagnosticLogEvent.getNeverRelationsBackwards(int threshold)
          Retrieves all those log events that never happened (some time) before this one.
 java.util.Set<DiagnosticLogEvent> DiagnosticLogEvent.getNeverRelationsForwards(int threshold)
          Retrieves all those log events that never happened (some time) after this one.
 java.util.Set<DiagnosticLogEvent> DiagnosticLogEvent.getPostActivities()
          Retrieves all activities that have occurred after this one.
 java.util.Set<DiagnosticLogEvent> DiagnosticLogEvent.getPreActivities()
          Retrieves all activities that have occurred before this one.
 java.util.Set<DiagnosticLogEvent> DiagnosticLogEvent.getSometimesRelationForwards(int threshold)
          Retrieves all those log events that sometimes happened (some time) after this one.
 java.util.Set<DiagnosticLogEvent> DiagnosticLogEvent.getSometimesRelationsBackwards(int threshold)
          Retrieves all those log events that sometimes happened (some time) before this one.
 

Methods in org.processmining.analysis.conformance with parameters of type DiagnosticLogEvent
 void DiagnosticLogEvent.addPostActivity(DiagnosticLogEvent event)
          Increments the post-occurrence status of the indicated log event by 1.
 void DiagnosticLogEvent.addPostActivity(DiagnosticLogEvent event, int value)
          Increments the post-occurrence status of the indicated log event by the indicated value.
 void DiagnosticLogEvent.addPreActivity(DiagnosticLogEvent event)
          Increments the pre-occurrence status of the indicated log event by 1.
 void DiagnosticLogEvent.addPreActivity(DiagnosticLogEvent event, int value)
          Increments the pre-occurrence status of the indicated log event by the indicated value.
 int DiagnosticLogEvent.getPostActivityStatus(DiagnosticLogEvent event)
          Gets the post-occurrence status of the indicated log event.
 int DiagnosticLogEvent.getPreActivityStatus(DiagnosticLogEvent event)
          Gets the pre-occurrence status of the indicated log event.
 void DiagnosticLogEventRelation.updateLogEventRelation(DiagnosticLogEvent newEvent, int similarInst)
          Updates the global log event relations with respect to the given log event.
 

Method parameters in org.processmining.analysis.conformance with type arguments of type DiagnosticLogEvent
 void DiagnosticLogEventRelation.completeRelationByExternalZeroEntries(java.util.Collection<DiagnosticLogEvent> referenceEvents)
          Walks through all the local log event relations and adds a zero entry for those log events that are not present in the local relation.