(int row)
| 3268 | |
| 3269 | |
| 3270 | public long[] getLongRow(int row) { |
| 3271 | long[] outgoing = new long[columns.length]; |
| 3272 | for (int col = 0; col < columns.length; col++) { |
| 3273 | outgoing[col] = getLong(row, col); |
| 3274 | } |
| 3275 | return outgoing; |
| 3276 | } |
| 3277 | |
| 3278 | |
| 3279 | // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . |