All Packages Class Hierarchy This Package Previous Next Index
Class Graph.Node
java.lang.Object
|
+----Graph.Node
- public class Node
- extends Object
-
Node(Graph)
-
-
adj()
-
-
adj(Node)
-
-
comesFrom(Node)
-
-
degree()
-
-
goesTo(Node)
-
-
hashCode()
-
-
inDegree()
-
-
outDegree()
-
-
pred()
-
-
succ()
-
-
toString()
-
Node
public Node(Graph g)
hashCode
public int hashCode()
- Overrides:
- hashCode in class Object
succ
public NodeList succ()
pred
public NodeList pred()
adj
public NodeList adj()
inDegree
public int inDegree()
outDegree
public int outDegree()
degree
public int degree()
goesTo
public boolean goesTo(Node n)
comesFrom
public boolean comesFrom(Node n)
adj
public boolean adj(Node n)
toString
public String toString()
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index