scratch.tom.simpleGraph
Interface Edge.Hyper<W>

All Superinterfaces:
Edge<W>
All Known Implementing Classes:
HyperEdge
Enclosing interface:
Edge<V>

public static interface Edge.Hyper<W>
extends Edge<W>

Hyper adds several methods to Edge


Nested Class Summary
 
Nested classes/interfaces inherited from interface scratch.tom.simpleGraph.Edge
Edge.Directed<W>, Edge.Hyper<W>
 
Method Summary
 void add(W v)
           
 void addAll(Collection<W> v)
           
 boolean remove(W v)
           
 boolean removeAll(Collection<W> v)
           
 
Methods inherited from interface scratch.tom.simpleGraph.Edge
getEndpoints
 

Method Detail

add

void add(W v)

addAll

void addAll(Collection<W> v)

remove

boolean remove(W v)

removeAll

boolean removeAll(Collection<W> v)