Package | Description |
---|---|
edu.uci.ics.jung.graph.filters |
Provides for a filtering mechanism that produces subgraphs of an original graph.
|
edu.uci.ics.jung.graph.predicates |
A
Predicate tests whether an Object satisfies a specific
implementation-defined property. |
Constructor and Description |
---|
VertexPredicateFilter(VertexPredicate vp) |
Modifier and Type | Class and Description |
---|---|
class |
ContainsUserDataKeyVertexPredicate
Returns true iff the vertex contains the specified user data key.
|
class |
IsolatedVertexPredicate
A predicate which tests to see whether a specified
vertex has any neighbors.
|
class |
NotInGraphVertexPredicate
A predicate that tests to see whether a specified
vertex is currently part of a graph.
|
class |
SinkVertexPredicate
Evaluates to
true if and only if
the specified vertex is a sink, i.e., has
no outgoing directed edges. |
class |
SourceVertexPredicate
Evaluates to
true if and only if
the specified vertex is a source, i.e., has
no incoming directed edges. |
class |
UserDatumVertexPredicate
A predicate that checks to see whether a vertex's user
data repository contains
the constructor-specified (key,datum) pair.
|