Uses of Class
Digit
-
-
Uses of Digit in <Unnamed>
Methods in <Unnamed> that return Digit Modifier and Type Method Description static DigitDigit. get(int i)Returns the digit having the specified value.DigitSudokuRow. get(int index)Gets the digit at the specified index of this row.DigitDigit. 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 intDigit. compareTo(Digit other)Compares this digit to another digit for order.voidSudokuRow. 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 StringSudokuRow. 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.
-