Uses of Class
at.jku.ssw.fp.sect04_3.Edge
-
Packages that use Edge Package Description at.jku.ssw.fp.sect04_3 -
-
Uses of Edge in at.jku.ssw.fp.sect04_3
Fields in at.jku.ssw.fp.sect04_3 with type parameters of type Edge Modifier and Type Field Description private List<Edge<V>>
Graph. edges
The list of edgesprivate List<Edge<V>>
Node. preds
The list of incoming edgesprivate List<Edge<V>>
Node. succs
The list of outgoing edgesMethods in at.jku.ssw.fp.sect04_3 that return Edge Modifier and Type Method Description Edge<V>
Graph. connect(Node<V> from, Node<V> to, int weight)
Connects two nodes with a given weight.(package private) static <V> Edge<V>
Node. connect(Node<V> from, Node<V> to, int weight)
Connects two nodes.Methods in at.jku.ssw.fp.sect04_3 that return types with arguments of type Edge Modifier and Type Method Description Optional<Edge<V>>
Node. getEdge(Node<V> succNode)
Returns the edge building a connection to the given node in an optional; with empty if no connection exists.List<Edge<V>>
Graph. getEdges()
Returns the list of edges of this graph.List<Edge<V>>
Node. getPredEdges()
Returns a list of incoming edges.List<Edge<V>>
Node. getSuccEdges()
Returns a list of outgoing edges.
-