(String name)
| 3361 | |
| 3362 | |
| 3363 | public float[] getFloatColumn(String name) { |
| 3364 | int col = getColumnIndex(name); |
| 3365 | return (col == -1) ? null : getFloatColumn(col); |
| 3366 | } |
| 3367 | |
| 3368 | |
| 3369 | public float[] getFloatColumn(int col) { |
no test coverage detected