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

Packages that use Hypergraph
edu.uci.ics.jung.algorithms.transformation   
edu.uci.ics.jung.graph.impl Implementations of the JUNG vertex, edge, and graph interfaces. 
edu.uci.ics.jung.io Provides a set of graph file format interpreters for loading graphs from disk. 
edu.uci.ics.jung.utils Provides a series of useful utility methods, and a number of custom helper classes designed specifically for this application. 
 

Uses of Hypergraph in edu.uci.ics.jung.algorithms.transformation
 

Methods in edu.uci.ics.jung.algorithms.transformation with parameters of type Hypergraph
 Graph FoldingTransformer.fold(Hypergraph h, Graph target, boolean use_vertices, NumberEdgeValue nev, BidiMap map)
          Creates a Graph which is a "folded" version of h.
 

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

Classes in edu.uci.ics.jung.graph.impl that implement Hypergraph
 class HypergraphBPG
          Deprecated. As of version 1.7, replaced by SetHypergraph.
 class SetHypergraph
          A basic implementation of Hypergraph.
 

Uses of Hypergraph in edu.uci.ics.jung.io
 

Methods in edu.uci.ics.jung.io that return Hypergraph
 Hypergraph HypergraphReader.load(Reader reader)
           
 

Uses of Hypergraph in edu.uci.ics.jung.utils
 

Methods in edu.uci.ics.jung.utils with parameters of type Hypergraph
static void GraphUtils.addEdges(Hypergraph g, Set edges)
          Adds all edges in the specified set to g.
static void GraphUtils.addVertices(Hypergraph g, Set vertices)
          Adds all vertices in the specified set to g.
static void GraphUtils.removeEdges(Hypergraph g, Set edges)
          Removes all vertices in the specified set from g.
static void GraphUtils.removeVertices(Hypergraph g, Set vertices)
          Removes all vertices in the specified set from g.