Package org.jgrapht.graph
Interface MaskFunctor<V,E>
-
public interface MaskFunctor<V,E>A functor interface for masking out vertices and edges of a graph.- Since:
- July 5, 2007
- Author:
- Guillaume Boulmier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisEdgeMasked(E edge)Returnstrueif the edge is masked,falseotherwise.booleanisVertexMasked(V vertex)Returnstrueif the vertex is masked,falseotherwise.
-