Uses of Class
org.jruby.dirgra.Vertex
-
-
Uses of Vertex in org.jruby.dirgra
Methods in org.jruby.dirgra that return Vertex Modifier and Type Method Description Vertex<T>
DirectedGraph. findOrCreateVertexFor(T data)
Vertex<T>
DirectedGraph. findVertexFor(T data)
Vertex<T>
Edge. getDestination()
Vertex<T>
Edge. getSource()
Methods in org.jruby.dirgra that return types with arguments of type Vertex Modifier and Type Method Description java.util.Collection<Vertex<T>>
DirectedGraph. vertices()
Methods in org.jruby.dirgra with parameters of type Vertex Modifier and Type Method Description void
Vertex. addEdgeTo(Vertex destination)
void
Vertex. addEdgeTo(Vertex destination, java.lang.Object type)
int
Vertex. compareTo(Vertex<T> that)
boolean
Vertex. removeEdgeTo(Vertex destination)
Constructors in org.jruby.dirgra with parameters of type Vertex Constructor Description Edge(Vertex<T> source, Vertex<T> destination, java.lang.Object type)
-