(String name)
| 3302 | |
| 3303 | |
| 3304 | public float[] getFloatColumn(String name) { |
| 3305 | int col = getColumnIndex(name); |
| 3306 | return (col == -1) ? null : getFloatColumn(col); |
| 3307 | } |
| 3308 | |
| 3309 | |
| 3310 | public float[] getFloatColumn(int col) { |
no test coverage detected