Interface Node

All Known Implementing Classes:
State

public interface Node
trait Node { boolean visited = false; public void visit() { this.visited = true; } public void clear() { this.visited = false; } }
  • Method Summary

    Modifier and Type Method Description
    void clear()  
    void visit()  
  • Method Details