Uses of Class
at.jku.ssw.fp.sect04_3.puzzle.Move
-
Packages that use Move Package Description at.jku.ssw.fp.sect04_3.puzzle -
-
Uses of Move in at.jku.ssw.fp.sect04_3.puzzle
Fields in at.jku.ssw.fp.sect04_3.puzzle with type parameters of type Move Modifier and Type Field Description private List<Move>
Puzzle. moves
Methods in at.jku.ssw.fp.sect04_3.puzzle that return Move Modifier and Type Method Description static Move
Move. of(Pos from, Pos to)
Creates a move from a position to a positionMethods in at.jku.ssw.fp.sect04_3.puzzle that return types with arguments of type Move Modifier and Type Method Description List<Move>
Puzzle. getMoveHistory()
Gets the list of moves taken to get to this state.List<Move>
Puzzle. getNextMoves()
Gets the moves possible from this state.Methods in at.jku.ssw.fp.sect04_3.puzzle with parameters of type Move Modifier and Type Method Description Puzzle
Puzzle. doMove(Move move)
Executes a next move.
-