(int row, int column)
| 3205 | |
| 3206 | |
| 3207 | public long getLong(int row, int column) { |
| 3208 | checkBounds(row, column); |
| 3209 | if (columnTypes[column] == LONG) { |
| 3210 | long[] longData = (long[]) columns[column]; |
| 3211 | return longData[row]; |
| 3212 | } |
| 3213 | String str = getString(row, column); |
| 3214 | if (str == null || str.equals(missingString)) { |
| 3215 | return missingLong; |
| 3216 | } |
| 3217 | try { |
| 3218 | return Long.parseLong(str); |
| 3219 | } catch (NumberFormatException nfe) { |
| 3220 | return missingLong; |
| 3221 | } |
| 3222 | } |
| 3223 | |
| 3224 | |
| 3225 | public long getLong(int row, String columnName) { |
no test coverage detected