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 boolean
isEdgeMasked(E edge)
Returnstrue
if the edge is masked,false
otherwise.boolean
isVertexMasked(V vertex)
Returnstrue
if the vertex is masked,false
otherwise.
-