public method O2GAccountsTableResponseReader.isCellValid

Brief

Checks whether the cell value can be used or not.

Declaration
Java
boolean  isCellValid (int iRow, int iColumn)

Parameters
iRow

The index of a row. The index must be between 0 and O2GGenericTableResponseReader.size() - 1.

iColumn

The index of a column. The index must be between 0 and O2GTableColumnCollection.size() - 1.

Details

The possible return values are:

true

The cell value in a table has changed since the previous update and is specified in the response. The value can be used.

false

The cell value in a table has not changed since the previous update and is not specified in the response. The value can not be used.

This returned value can be true or false only in the case of the table reader being applied to the TABLES_UPDATES response.

Otherwise, the method returns true.

Declared in O2GGenericTableResponseReader

back