(String name)
| 3436 | |
| 3437 | |
| 3438 | public double[] getDoubleColumn(String name) { |
| 3439 | int col = getColumnIndex(name); |
| 3440 | return (col == -1) ? null : getDoubleColumn(col); |
| 3441 | } |
| 3442 | |
| 3443 | |
| 3444 | public double[] getDoubleColumn(int col) { |
nothing calls this directly
no test coverage detected