Package org.jgrapht.graph
Interface MaskFunctor<V,E>
-
- Type Parameters:
V
- the graph vertex typeE
- the graph edge type
@Deprecated public interface MaskFunctor<V,E>
Deprecated.in favor of using lambdasA functor interface for masking out vertices and edges of a graph.- Since:
- July 5, 2007
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
isEdgeMasked(E edge)
Deprecated.Returnstrue
if the edge is masked,false
otherwise.boolean
isVertexMasked(V vertex)
Deprecated.Returnstrue
if the vertex is masked,false
otherwise.
-
-
-
Method Detail
-
isEdgeMasked
boolean isEdgeMasked(E edge)
Deprecated.Returnstrue
if the edge is masked,false
otherwise.- Parameters:
edge
- an edge- Returns:
true
if the edge is masked,false
otherwise
-
isVertexMasked
boolean isVertexMasked(V vertex)
Deprecated.Returnstrue
if the vertex is masked,false
otherwise.- Parameters:
vertex
- a vertex- Returns:
true
if the vertex is masked,false
otherwise
-
-