Package org.geotools.graph.path
Class ExhaustivePathFinder
- Object
-
- ExhaustivePathFinder
-
public class ExhaustivePathFinder extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static int
CONTINUE_PATH
static int
END_PATH_AND_CONTINUE
static int
END_PATH_AND_STOP
static int
KILL_PATH
-
Constructor Summary
Constructors Constructor Description ExhaustivePathFinder()
ExhaustivePathFinder(int maxitr, int maxplen)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Path
getPath(Node from, Node to)
List
getPaths(Node from, GraphVisitor visitor)
List
getPaths(Node from, Node to)
-
-
-
Field Detail
-
CONTINUE_PATH
public static final int CONTINUE_PATH
- See Also:
- Constant Field Values
-
END_PATH_AND_CONTINUE
public static final int END_PATH_AND_CONTINUE
- See Also:
- Constant Field Values
-
END_PATH_AND_STOP
public static final int END_PATH_AND_STOP
- See Also:
- Constant Field Values
-
KILL_PATH
public static final int KILL_PATH
- See Also:
- Constant Field Values
-
-