Uses of Interface
edu.uci.ics.jung.graph.filters.Filter

Packages that use Filter
edu.uci.ics.jung.graph.filters   
edu.uci.ics.jung.graph.filters.impl   
edu.uci.ics.jung.visualization   
 

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

Subinterfaces of Filter in edu.uci.ics.jung.graph.filters
 interface EfficientFilter
          An EfficientFilter can take in an UnassembledGraph withut assembling it, and is used for non-structural filters.
 interface LevelFilter
          A generally useful template for Filters that have a settable value.
 

Classes in edu.uci.ics.jung.graph.filters that implement Filter
 class EdgePredicateFilter
          This is a simple Edge filter that accepts the edges which its Predicate accepts.
 class GeneralEdgeAcceptFilter
          Abstract class that implements a generic filter for accepting arbitrary edges (and all vertices).
 class GeneralVertexAcceptFilter
          Abstract class that implements a generic filter for accepting arbitrary vertices (and all edges).
 class SerialFilter
          This is a generic filter that takes at least two other filters and runs them seially.
 class TrivialFilter
          A small filter that returns the vertices and edges in the orignal Graph.
 class VertexPredicateFilter
          This is a simple Vertex filter that accepts the vertices which its Predicate accepts.
 

Methods in edu.uci.ics.jung.graph.filters with parameters of type Filter
 void SerialFilter.append(Filter f)
          Adds a filter to the end of the sequence of filters.
 

Constructors in edu.uci.ics.jung.graph.filters with parameters of type Filter
UnassembledGraph(Filter f, java.util.Set vertices, java.util.Set edges, Graph original)
           
UnassembledGraph(Filter f, java.util.Set vertices, java.util.Set edges, UnassembledGraph previous)
           
SerialFilter(Filter f1, Filter f2)
          Small constructor for two filters.
 

Uses of Filter in edu.uci.ics.jung.graph.filters.impl
 

Classes in edu.uci.ics.jung.graph.filters.impl that implement Filter
 class AlphabeticVertexFilter
          A small example filter that accepts vertices that are alphabetically past the input value.
 class DropSoloNodesFilter
          Accepts only nodes that have at least one edge--that is, nodes that are connected to one other node.
 class KNeighborhoodFilter
          A filter used to extract the k-neighborhood around one or more root node(s)
 class NumericDecorationFilter
          This simple filter accepts vertices if their UserData at the given key is over a threshold value.
 class WeightedEdgeGraphFilter
          This simple filter accepts Edges if their EdgeWeightLabeller turns out to be greater than the input value.
 

Methods in edu.uci.ics.jung.graph.filters.impl that return Filter
static Filter DropSoloNodesFilter.getInstance()
           
 

Uses of Filter in edu.uci.ics.jung.visualization
 

Methods in edu.uci.ics.jung.visualization with parameters of type Filter
 void GraphDraw.addStaticFilter(Filter f)
          Adds a Filter that doesn't slide.