Package jadex.rules.tools.reteviewer
Class ReteEdge
- java.lang.Object
-
- jadex.rules.tools.reteviewer.ReteEdge
-
public class ReteEdge extends java.lang.ObjectAn edge has start node, end node and a type (object or tuple).
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Check if this edge equals a given object.INodegetEnd()Return the end node of this edge.INodegetStart()Return the start node of this edge.inthashCode()Hash code of the edge.booleanisTuple()Check, if this edge is a tuple edge (or an object edge).java.lang.StringtoString()Return a string representation
-
-
-
Method Detail
-
getStart
public INode getStart()
Return the start node of this edge.
-
getEnd
public INode getEnd()
Return the end node of this edge.
-
isTuple
public boolean isTuple()
Check, if this edge is a tuple edge (or an object edge).
-
hashCode
public int hashCode()
Hash code of the edge.- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
Check if this edge equals a given object.- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()
Return a string representation- Overrides:
toStringin classjava.lang.Object
-
-