Class DataPosition


  • public final class DataPosition
    extends java.lang.Object
    Specifies a data cell's position in an Excel file.
    Since:
    2.3.0
    • Constructor Summary

      Constructors 
      Constructor Description
      DataPosition​(int rowIndex, int columnIndex)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getColumnIndex()
      Returns the cell's column index.
      int getRowIndex()
      Returns the cell's row index.
      void setColumnIndex​(int columnIndex)
      Sets the cell's column index.
      void setRowIndex​(int rowIndex)
      Sets the cell's row index.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getRowIndex

        public int getRowIndex()
        Returns the cell's row index.
      • setRowIndex

        public void setRowIndex​(int rowIndex)
        Sets the cell's row index.
      • getColumnIndex

        public int getColumnIndex()
        Returns the cell's column index.
      • setColumnIndex

        public void setColumnIndex​(int columnIndex)
        Sets the cell's column index.