getCellName static method

String getCellName(
  1. int row,
  2. int column
)

Get cell name from row and column.

Implementation

static String getCellName(int row, int column) {
  return getColumnName(column) + row.toString();
}