Uses of Interface
net.ggtools.grand.filters.GraphFilter
-
Packages that use GraphFilter Package Description net.ggtools.grand.filters net.ggtools.grand.tasks -
-
Uses of GraphFilter in net.ggtools.grand.filters
Classes in net.ggtools.grand.filters that implement GraphFilter Modifier and Type Class Description classAbstractGraphFilterclassConnectedToNodeFilterA graph filter returning all nodes connected to a specific node be it through forward or backward links (or both).classFilterChainA metafilter made by chaining together several filters.classFromNodeFilterA graph filter returning all the nodes accessible from a specific node using only forward links.classGraphWalkFilterAn abstract class implementing generic filtering from a graph walk.classIsolatedNodeFilterA filter to remove isolated nodes in a graph.classMissingNodeFilterA filter removing the missing nodes, that is nodes withNode.ATTR_MISSING_NODEset.classNodeRemoverFilterA filter to remove one or more node from a graph.classPrefixedNodeFilterA filter removing the prefixed nodes, that is nodes withNode.ATTR_PREFIXED_NODEset.classToNodeFilterA graph filter returning all the nodes accessible from a specific node using only backward links.Methods in net.ggtools.grand.filters that return types with arguments of type GraphFilter Modifier and Type Method Description List<GraphFilter>FilterChain. getFilterList()Returns a list of the filter in the chain.Methods in net.ggtools.grand.filters with parameters of type GraphFilter Modifier and Type Method Description voidFilterChain. addFilterFirst(GraphFilter newFilter)Add a new filter at the beginning of the chain.voidFilterChain. addFilterLast(GraphFilter newFilter)Adds a new filter at the end of the chain. -
Uses of GraphFilter in net.ggtools.grand.tasks
Methods in net.ggtools.grand.tasks that return GraphFilter Modifier and Type Method Description GraphFilterConnectedFilterType. getFilter()Method getFilter.GraphFilterFilterType. getFilter()Return the actual filter after creating it if needed.GraphFilterFromNodeFilterType. getFilter()Method getFilter.GraphFilterToNodeFilterType. getFilter()Method getFilter.
-