Package | Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
Hyperedge |
Hypergraph.addEdge(Hyperedge e)
Adds
e to this graph, and returns
a reference to the added edge. |
Modifier and Type | Method and Description |
---|---|
Hyperedge |
Hypergraph.addEdge(Hyperedge e)
Adds
e to this graph, and returns
a reference to the added edge. |
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. |
void |
Hypergraph.removeEdge(Hyperedge e)
Removes
e from this graph. |
Modifier and Type | Class and Description |
---|---|
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 . |
Modifier and Type | Method and Description |
---|---|
Hyperedge |
HypergraphBPG.addEdge(Hyperedge e)
Deprecated.
Adds a single edge to the graph
|
Hyperedge |
SetHypergraph.addEdge(Hyperedge e) |
Modifier and Type | Method and Description |
---|---|
Hyperedge |
HypergraphBPG.addEdge(Hyperedge e)
Deprecated.
Adds a single edge to the graph
|
Hyperedge |
SetHypergraph.addEdge(Hyperedge e) |
boolean |
AbstractHypervertex.connectEdge(Hyperedge e) |
boolean |
HypervertexBPG.connectEdge(Hyperedge e) |
boolean |
AbstractHypervertex.disconnectEdge(Hyperedge e) |
boolean |
HypervertexBPG.disconnectEdge(Hyperedge e) |
void |
HypergraphBPG.removeEdge(Hyperedge e)
Deprecated.
|
void |
SetHypergraph.removeEdge(Hyperedge e)
Removes the edge from this graph.
|