(String name)
| 3377 | |
| 3378 | |
| 3379 | public double[] getDoubleColumn(String name) { |
| 3380 | int col = getColumnIndex(name); |
| 3381 | return (col == -1) ? null : getDoubleColumn(col); |
| 3382 | } |
| 3383 | |
| 3384 | |
| 3385 | public double[] getDoubleColumn(int col) { |
nothing calls this directly
no test coverage detected