Class DataPosition
- java.lang.Object
-
- com.orchestranetworks.addon.dex.configuration.DataPosition
-
public final class DataPosition extends java.lang.ObjectSpecifies 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 intgetColumnIndex()Returns the cell's column index.intgetRowIndex()Returns the cell's row index.voidsetColumnIndex(int columnIndex)Sets the cell's column index.voidsetRowIndex(int rowIndex)Sets the cell's row index.
-
-
-
Constructor Detail
-
DataPosition
public DataPosition(int rowIndex, int columnIndex) throws DataExchangeException- Throws:
DataExchangeException
-
-
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.
-
-