Class UserControlledHintSearcher
- java.lang.Object
-
- com.treasure.hunt.strategy.searcher.impl.UserControlledHintSearcher
-
-
Constructor Summary
Constructors Constructor Description UserControlledHintSearcher()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
init(org.locationtech.jts.geom.Point startPosition)
SearchPath
move()
Use this to perform a initial move, without a hint given.SearchPath
move(Hint hint)
-
-
-
Method Detail
-
init
public void init(org.locationtech.jts.geom.Point startPosition)
-
move
public SearchPath move()
Description copied from interface:Searcher
Use this to perform a initial move, without a hint given. This is for the case, the searcher starts. (as he does normally)- Specified by:
move
in interfaceSearcher<Hint>
- Returns:
- A
SearchPath
to the point, the user gave.
-
move
public SearchPath move(Hint hint)
- Specified by:
move
in interfaceSearcher<Hint>
- Parameters:
hint
- the hint, theHider
gave last.- Returns:
- A
SearchPath
to the point, the user gave.
-
-