Package net.ggtools.grand.filters
Interface GraphFilter
-
- All Superinterfaces:
GraphConsumer,GraphProducer
- All Known Implementing Classes:
AbstractGraphFilter,ConnectedToNodeFilter,FilterChain,FromNodeFilter,GraphWalkFilter,IsolatedNodeFilter,MissingNodeFilter,NodeRemoverFilter,PrefixedNodeFilter,ToNodeFilter
public interface GraphFilter extends GraphProducer, GraphConsumer
Interface for class implementing filters. A filter is basically the combination of a consumer and a producer.- Author:
- Christophe Labouisse
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Get the filter's name.-
Methods inherited from interface net.ggtools.grand.graph.GraphConsumer
setProducer
-
Methods inherited from interface net.ggtools.grand.graph.GraphProducer
getGraph
-
-
-
-
Method Detail
-
getName
String getName()
Get the filter's name. Filter naming is just a service for backends and as no impact on the actual filter processing.- Returns:
- the filter's name
-
-