Interface GraphNode<K,V>
-
- All Known Implementing Classes:
AbstractGraphNode
,DirectedGraphNode
,UndirectedGraphNode
public interface GraphNode<K,V>
- Author:
- pavlidis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Graph<? extends GraphNode<K,V>,K,V>
getGraph()
V
getItem()
K
getKey()
void
setItem(V value)
Set the contents of the node.void
setValue(K key, V value)
Set the key and value associated with this node.
-