Uses of Class
org.jruby.dirgra.Vertex
-
-
Uses of Vertex in org.jruby.dirgra
Fields in org.jruby.dirgra declared as Vertex Modifier and Type Field Description private Vertex<T>
Edge. destination
private Vertex<T>
Edge. source
Fields in org.jruby.dirgra with type parameters of type Vertex Modifier and Type Field Description private java.util.Map<T,Vertex<T>>
DirectedGraph. vertices
Methods in org.jruby.dirgra that return Vertex Modifier and Type Method Description Vertex<T>
DirectedGraph. findOrCreateVertexFor(T data)
Find existing vertex and if it is not present create it.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)
-