Uses of Class
Digit
-
-
Uses of Digit in <Unnamed>
Methods in <Unnamed> that return Digit Modifier and Type Method Description static Digit
Digit. get(int i)
Returns the digit having the specified value.Digit
SudokuRow. get(int index)
Gets the digit at the specified index of this row.Digit
Digit. set(int value)
Sets this digit to the specified value.Methods in <Unnamed> that return types with arguments of type Digit Modifier and Type Method Description static List<Digit>
Digit. allDigits()
Returns a new list containing all 10 digits (from 0 to 9).(package private) List<Digit>
SudokuRow. getRow()
Returns the list for this row.List<Digit>
SudokuRow. safeGetRow()
Returns a deep copy of the digits of this row.Methods in <Unnamed> with parameters of type Digit Modifier and Type Method Description int
Digit. compareTo(Digit other)
Compares this digit to another digit for order.void
SudokuRow. set(int index, Digit d)
Sets the digit at the specified index of this row to equal the value of the specified digit.Method parameters in <Unnamed> with type arguments of type Digit Modifier and Type Method Description (package private) static String
SudokuRow. toString(List<Digit> t)
Recursively computes the string representation of this sudoku row.Constructors in <Unnamed> with parameters of type Digit Constructor Description Digit(Digit other)
Initialize this digit by copying another digit.Constructor parameters in <Unnamed> with type arguments of type Digit Constructor Description SudokuRow(List<Digit> row)
Initializes this sudoku row so that the digits of this row are equal to the digits in the specified list.
-