| Package | Description |
|---|---|
| edu.uci.ics.jung.graph |
Interfaces for the JUNG graph types, and some representative implementations.
|
| edu.uci.ics.jung.graph.util |
Utility interfaces and classes for the JUNG API.
|
| Modifier and Type | Method and Description |
|---|---|
EdgeType |
Hypergraph.getDefaultEdgeType()
Returns the default edge type for this graph.
|
EdgeType |
GraphDecorator.getDefaultEdgeType() |
EdgeType |
Hypergraph.getEdgeType(E edge)
Returns the edge type of
edge in this graph. |
EdgeType |
GraphDecorator.getEdgeType(E edge) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
Hypergraph.addEdge(E edge,
Collection<? extends V> vertices,
EdgeType edge_type)
Adds
edge to this graph with type edge_type. |
boolean |
GraphDecorator.addEdge(E edge,
Collection<? extends V> vertices,
EdgeType edge_type) |
boolean |
ObservableGraph.addEdge(E e,
V v1,
V v2,
EdgeType edgeType) |
boolean |
GraphDecorator.addEdge(E e,
V v1,
V v2,
EdgeType edgeType) |
boolean |
Graph.addEdge(E e,
V v1,
V v2,
EdgeType edgeType)
Adds edge
e to this graph such that it connects
vertex v1 to v2. |
int |
Hypergraph.getEdgeCount(EdgeType edge_type)
Returns the number of edges of type
edge_type in this graph. |
int |
GraphDecorator.getEdgeCount(EdgeType edge_type) |
Collection<E> |
Hypergraph.getEdges(EdgeType edge_type)
Returns the collection of edges in this graph which are of type
edge_type. |
Collection<E> |
GraphDecorator.getEdges(EdgeType edgeType) |
| Modifier and Type | Method and Description |
|---|---|
static EdgeType |
EdgeType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EdgeType[] |
EdgeType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Copyright © 2016. All rights reserved.