Uses of Class
uk.co.keang.sudoku.Puzzle.PuzzleDifficulty

Packages that use Puzzle.PuzzleDifficulty
uk.co.keang.sudoku   
 

Uses of Puzzle.PuzzleDifficulty in uk.co.keang.sudoku
 

Methods in uk.co.keang.sudoku that return Puzzle.PuzzleDifficulty
 Puzzle.PuzzleDifficulty Puzzle.getDifficulty()
          Gets an indication of how difficult it is to solve this puzzle
(package private) static Puzzle.PuzzleDifficulty Puzzle.PuzzleDifficulty.getDifficulty(int diff)
           
static Puzzle.PuzzleDifficulty Puzzle.PuzzleDifficulty.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Puzzle.PuzzleDifficulty[] Puzzle.PuzzleDifficulty.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in uk.co.keang.sudoku with parameters of type Puzzle.PuzzleDifficulty
(package private)  Puzzle Generator.generatePuzzle(Puzzle.PuzzleDifficulty difficulty, java.beans.PropertyChangeListener listener)
          Generates a puzzle with this difficulty level
 void Puzzle.setDifficulty(Puzzle.PuzzleDifficulty dif)
          Sets an level indicating how difficult it is to solve this puzzle
 

Constructors in uk.co.keang.sudoku with parameters of type Puzzle.PuzzleDifficulty
Puzzle(Puzzle.Cell[][] grid, Puzzle.PuzzleDifficulty dif)
          Constructs a puzzle from this grid
SudokuGUI.GeneratePuzzleTask(Puzzle.PuzzleDifficulty d, javax.swing.ProgressMonitor pm)