| Package | Description |
|---|---|
| edu.uci.ics.jung.graph |
Interfaces for the JUNG graph types, and some representative implementations.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
DirectedGraph<V,E>
A tagging interface for implementations of
Graph
that accept only directed edges. |
interface |
Forest<V,E>
An interface for a graph which consists of a collection of rooted
directed acyclic graphs.
|
interface |
Graph<V,E>
A graph consisting of a set of vertices of type
V
set and a set of edges of type E. |
interface |
KPartiteGraph<V,E>
An interface for graphs whose vertices are each members of one of 2 or more
disjoint sets (partitions), and whose edges connect only vertices in distinct
partitions.
|
interface |
Tree<V,E>
A subtype of
Graph which is a (directed, rooted) tree. |
interface |
UndirectedGraph<V,E>
A tagging interface for extensions of
Graph that
accept only undirected edges. |
| Modifier and Type | Class and Description |
|---|---|
class |
GraphDecorator<V,E>
An implementation of
Graph that delegates its method calls to a
constructor-specified Graph instance. |
class |
ObservableGraph<V,E>
A decorator class for graphs which generates events
|
Copyright © 2016. All rights reserved.