(String name)
| 3198 | |
| 3199 | |
| 3200 | public long[] getLongColumn(String name) { |
| 3201 | int col = getColumnIndex(name); |
| 3202 | return (col == -1) ? null : getLongColumn(col); |
| 3203 | } |
| 3204 | |
| 3205 | |
| 3206 | public long[] getLongColumn(int col) { |
nothing calls this directly
no test coverage detected