Class PesArc
- java.lang.Object
-
- org.processmining.primeminer.models.PesArc
-
public class PesArc extends java.lang.ObjectModel of PesArc, used in PrimeEventStructures This PesArc holds the PesNode from (where the arc starts), and the PesNode to (where the arc ends)- Author:
- Robin Bergenthum, Raphael Meyer
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object object)Returns whether these parameter values are equal to the given parameter values.PesNodegetFrom()PesNodegetTo()inthashCode()Returns the hash code for these parameters.voidsetFrom(PesNode from)voidsetTo(PesNode to)java.lang.StringtoString()toString of PesArc
-
-
-
Method Detail
-
getFrom
public PesNode getFrom()
- Returns:
- the node, where the arcs starts
-
setFrom
public void setFrom(PesNode from)
- Parameters:
from- set the node from
-
getTo
public PesNode getTo()
- Returns:
- the node, where the arcs end
-
setTo
public void setTo(PesNode to)
- Parameters:
to- set the node to
-
toString
public java.lang.String toString()
toString of PesArc- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object object)
Returns whether these parameter values are equal to the given parameter values.- Overrides:
equalsin classjava.lang.Object- Parameters:
object- a given object to check if it is instanceof PesArc- Returns:
- Whether these parameter values are equal to the given parameter values.
-
hashCode
public int hashCode()
Returns the hash code for these parameters.- Overrides:
hashCodein classjava.lang.Object
-
-