Package lejos.robotics.pathfinding
Class ShortestPathFinder.Node
- java.lang.Object
-
- lejos.robotics.pathfinding.ShortestPathFinder.Node
-
- Enclosing class:
- ShortestPathFinder
public class ShortestPathFinder.Node extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description java.util.ArrayList<ShortestPathFinder.Node>_blocked
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(ShortestPathFinder.Node n)booleanisBlocked(ShortestPathFinder.Node aNode)java.lang.StringtoString()
-
-
-
Field Detail
-
_blocked
public java.util.ArrayList<ShortestPathFinder.Node> _blocked
-
-
Constructor Detail
-
Node
public Node(Point p)
-
-
Method Detail
-
equals
public boolean equals(ShortestPathFinder.Node n)
-
isBlocked
public boolean isBlocked(ShortestPathFinder.Node aNode)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-