Interface DirectedGraphElement
-
- All Superinterfaces:
AttributeMapOwner,java.lang.Cloneable
- All Known Subinterfaces:
BoundaryDirectedGraphNode,ContainingDirectedGraphNode,DirectedGraph<N,E>,DirectedGraphEdge<S,T>,DirectedGraphNode
- All Known Implementing Classes:
AbstractDirectedGraph,AbstractDirectedGraphEdge,AbstractDirectedGraphNode
public interface DirectedGraphElement extends AttributeMapOwner, java.lang.Cloneable
Main interface for elements of a directed graph. Elements are nodes and edges. All implementing classes of this interface should implement an equals method based on some globally unique ID.- Author:
- bfvdonge
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanequals(java.lang.Object o)DirectedGraph<?,?>getGraph()java.lang.StringgetLabel()inthashCode()-
Methods inherited from interface org.processmining.models.graphbased.AttributeMapOwner
getAttributeMap
-
-
-
-
Method Detail
-
getLabel
java.lang.String getLabel()
-
getGraph
DirectedGraph<?,?> getGraph()
-
equals
boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-