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

Packages that use Hypervertex
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 Hypervertex in edu.uci.ics.jung.graph
 

Methods in edu.uci.ics.jung.graph that return Hypervertex
 Hypervertex Hypergraph.addVertex(Hypervertex v)
          Adds v to this graph, and returns a reference to the added vertex.
 

Methods in edu.uci.ics.jung.graph with parameters of type Hypervertex
 Hypervertex Hypergraph.addVertex(Hypervertex v)
          Adds v to this graph, and returns a reference to the added vertex.
 boolean Hyperedge.connectVertex(Hypervertex hv1)
          Connects hv1 to this hyperedge and vice versa.
 boolean Hyperedge.disconnectVertex(Hypervertex hv1)
          Disconnects hv1 from this hyperedge and vice versa.
 void Hypergraph.removeVertex(Hypervertex v)
          Removes v from this graph.
 

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

Classes in edu.uci.ics.jung.graph.impl that implement Hypervertex
 class AbstractHypervertex
          This class provides a skeletal implementation of the Hypervertex interface to minimize the effort required to implement this interface.
 class CollectionHypervertex
           
 class HypervertexBPG
          A Hypervertex has zero or more hyperEdges attached to it, and is a member of a Hypergraph.
 class ListHypervertex
          An implementation of Hypervertex that stores its incident edges as a List internally.
 class SetHypervertex
          An implementation of Hypervertex that maintains independent Sets of incident edges and neighbors.
 

Methods in edu.uci.ics.jung.graph.impl that return Hypervertex
 Hypervertex HypergraphBPG.addVertex(Hypervertex v)
          Deprecated. Adds v to this graph.
 Hypervertex SetHypergraph.addVertex(Hypervertex v)
           
 

Methods in edu.uci.ics.jung.graph.impl with parameters of type Hypervertex
 Hypervertex HypergraphBPG.addVertex(Hypervertex v)
          Deprecated. Adds v to this graph.
 Hypervertex SetHypergraph.addVertex(Hypervertex v)
           
 boolean AbstractHyperedge.connectVertex(Hypervertex hv1)
          Connects hv1 to this edge and vice versa.
 boolean HyperedgeBPG.connectVertex(Hypervertex hv3_x)
          Deprecated. Registers an additional vertex hv3_x onto this Edge.
 boolean AbstractHyperedge.disconnectVertex(Hypervertex hv1)
          Disconnects hv1 from this edge and vice versa.
 boolean HyperedgeBPG.disconnectVertex(Hypervertex v)
          Deprecated.  
 void HypergraphBPG.removeVertex(Hypervertex v)
          Deprecated.  
 void SetHypergraph.removeVertex(Hypervertex v)
          Removes the vertex from this graph.