Interface CellWalkContext


public interface CellWalkContext
Author:
Roman Kashitsyn
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns number of current column.
    long
    Returns ordinal number of cell in range.
    int
    Returns number of current row.
  • Method Details

    • getOrdinalNumber

      long getOrdinalNumber()
      Returns ordinal number of cell in range. Numeration starts from top left cell and ends at bottom right cell. Here is a brief example (number in cell is it's ordinal number):
      12
      34
      Returns:
      ordinal number of current cell
    • getRowNumber

      int getRowNumber()
      Returns number of current row.
      Returns:
      number of current row
    • getColumnNumber

      int getColumnNumber()
      Returns number of current column.
      Returns:
      number of current column