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

Packages that use EdgePredicate
edu.uci.ics.jung.graph.filters   
edu.uci.ics.jung.graph.predicates   
 

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

Constructors in edu.uci.ics.jung.graph.filters with parameters of type EdgePredicate
EdgePredicateFilter(EdgePredicate ep)
           
 

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

Subclasses of EdgePredicate in edu.uci.ics.jung.graph.predicates
 class KPartiteEdgePredicate
          An edge predicate that passes Edges whose endpoints satisfy distinct elements of the Predicate collection passed in as a parameter to the constructor.
 class NotInGraphEdgePredicate
          A predicate that tests to see whether a specified edge is currently part of a graph.
 class ParallelEdgePredicate
          A predicate that checks to see whether the specified edge is parallel to any other edge.
 class ReciprocatedDirectedEdgePredicate
          Returns true if and only if this edge is a DirectedEdge that has an antiparallel DirectedEdge in this graph.
 class SelfLoopEdgePredicate
          A predicate that checks to see whether a specified edge is a self-loop.
 class SimpleEdgePredicate
          A predicate that tests to see whether a specified edge is "simple" (neither parallel to any edge nor a self-loop).
 class TreePredicate
           
 class UserDatumEdgePredicate
          A predicate that checks to see whether an edge's user data repository contains the constructor-specified (key,datum) pair.