Package science.aist.gtf.graph.traversal
Interface TraversalStrategy<V,E>
-
- Type Parameters:
V
- the type of the decorated vertex valueE
- the type of the decorated edge value
- All Known Implementing Classes:
DepthFirstSearchTraversalStrategy
public interface TraversalStrategy<V,E>
Interface for traversal strategy
- Since:
- 1.0
- Author:
- Andreas Schuler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
traverse(Visitor<V> visitor)
Traverses through the graphvoid
traverse(Visitor<V> vertexVisitor, Visitor<E> edgeVisitor)
Traverses through the graph
-