Uses of Interface
edu.uci.ics.jung.graph.Hyperedge

Packages that use Hyperedge
edu.uci.ics.jung.graph Specifies the interfaces for and capabilities of the JUNG vertex, edge, and graph classes. 
edu.uci.ics.jung.graph.impl Implementations of the JUNG vertex, edge, and graph interfaces.  
 

Uses of Hyperedge in edu.uci.ics.jung.graph
 

Methods in edu.uci.ics.jung.graph that return Hyperedge
 Hyperedge Hypergraph.addEdge(Hyperedge e)
          Adds e to this graph, and returns a reference to the added edge.
 

Methods in edu.uci.ics.jung.graph with parameters of type Hyperedge
 Hyperedge Hypergraph.addEdge(Hyperedge e)
          Adds e to this graph, and returns a reference to the added edge.
 void Hypergraph.removeEdge(Hyperedge e)
          Removes e from this graph.
 boolean Hypervertex.connectEdge(Hyperedge he)
          Connects he to this hypervertex and vice versa.
 boolean Hypervertex.disconnectEdge(Hyperedge he)
          Disconnects he from this hypervertex and vice versa.
 

Uses of Hyperedge in edu.uci.ics.jung.graph.impl
 

Classes in edu.uci.ics.jung.graph.impl that implement Hyperedge
 class AbstractHyperedge
          This class provides a skeletal implementation of the Hyperedge interface to minimize the effort required to implement this interface.
 class CollectionHyperedge
          An implementation of Hyperedge that stores its collection of incident vertices internally as a Collection.
 class HyperedgeBPG
          Deprecated. As of version 1.7, replaced by native implementations of Hyperedge.
 class ListHyperedge
          An implementation of Hyperedge that stores its list of incident vertices internally as a List.
 class SetHyperedge
          An implementation of Hyperedge that stores its collection of incident vertices internally as a Set.
 

Methods in edu.uci.ics.jung.graph.impl that return Hyperedge
 Hyperedge HypergraphBPG.addEdge(Hyperedge e)
          Deprecated. Adds a single edge to the graph
 Hyperedge SetHypergraph.addEdge(Hyperedge e)
           
 

Methods in edu.uci.ics.jung.graph.impl with parameters of type Hyperedge
 boolean AbstractHypervertex.connectEdge(Hyperedge e)
           
 boolean AbstractHypervertex.disconnectEdge(Hyperedge e)
           
 Hyperedge HypergraphBPG.addEdge(Hyperedge e)
          Deprecated. Adds a single edge to the graph
 void HypergraphBPG.removeEdge(Hyperedge e)
          Deprecated.  
 boolean HypervertexBPG.connectEdge(Hyperedge e)
           
 boolean HypervertexBPG.disconnectEdge(Hyperedge e)
           
 Hyperedge SetHypergraph.addEdge(Hyperedge e)
           
 void SetHypergraph.removeEdge(Hyperedge e)
          Removes the edge from this graph.