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
Modifier and TypeMethodDescriptionboolean
isEdgeMasked
(E edge) Returnstrue
if the edge is masked,false
otherwise.boolean
isVertexMasked
(V vertex) Returnstrue
if the vertex is masked,false
otherwise.
-
Method Details
-
isEdgeMasked
Returnstrue
if the edge is masked,false
otherwise.- Parameters:
edge
- edge.- Returns:
- .
-
isVertexMasked
Returnstrue
if the vertex is masked,false
otherwise.- Parameters:
vertex
- vertex.- Returns:
- .
-