I'd use a 9*9 2D array of integers


int[][] sodoku = new int[9][9];

Then you don't need to create a Cell class, or have to do any math to get the location of a Cell.