newData static method

Data newData(
  1. Sheet sheet,
  2. int row,
  3. int column
)

returns the newData object when called from Sheet Class

Implementation

static Data newData(Sheet sheet, int row, int column) {
  return Data._(sheet, row, column);
}