Uses of Class
edu.uci.ics.jung.graph.predicates.VertexPredicate

Packages that use VertexPredicate
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. 
 

Uses of VertexPredicate in edu.uci.ics.jung.graph.filters
 

Constructors in edu.uci.ics.jung.graph.filters with parameters of type VertexPredicate
VertexPredicateFilter(VertexPredicate vp)
           
 

Uses of VertexPredicate in edu.uci.ics.jung.graph.predicates
 

Subclasses of VertexPredicate in edu.uci.ics.jung.graph.predicates
 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.