Class MultiEdgesConnecting<E>

java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractSet<E>
com.google.common.graph.MultiEdgesConnecting<E>
Type Parameters:
E - Edge parameter type
All Implemented Interfaces:
Iterable<E>, Collection<E>, Set<E>

abstract class MultiEdgesConnecting<E> extends AbstractSet<E>
A class to represent the set of edges connecting an (implicit) origin node to a target node.

The outEdgeToNode map allows this class to work on networks with parallel edges. See EdgesConnecting for a class that is more efficient but forbids parallel edges.