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 booleanisEdgeMasked(E edge)Deprecated.Returnstrueif the edge is masked,falseotherwise.booleanisVertexMasked(V vertex)Deprecated.Returnstrueif the vertex is masked,falseotherwise.
-
-
-
Method Detail
-
isEdgeMasked
boolean isEdgeMasked(E edge)
Deprecated.Returnstrueif the edge is masked,falseotherwise.- Parameters:
edge- an edge- Returns:
trueif the edge is masked,falseotherwise
-
isVertexMasked
boolean isVertexMasked(V vertex)
Deprecated.Returnstrueif the vertex is masked,falseotherwise.- Parameters:
vertex- a vertex- Returns:
trueif the vertex is masked,falseotherwise
-
-