| Package | Description | 
|---|---|
| javax.ide.util | 
 This package contains utility classes. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
java.util.Comparator<T> | 
Graph.createComparator()
Creates a comparator that can be used to compare any two items in the graph based on their sorted order (i.e. 
 | 
java.util.List<T> | 
Graph.getSortedVertices()
Get an ordered list of vertices, sorted such that for any given vertex A with a directed edge to vertex B, index(B) < index(A). 
 | 
java.util.List<T> | 
Graph.getSortedVertices(T startVertex)
Get an ordered list of vertices, sorted such that for any given vertex A with a directed edge to vertex B, index(B) < index(A). 
 | 
java.util.List<T> | 
Graph.getVerticesConnectedTo(T vertex)
Get all vertices connected to the specified vertex. 
 |