(String name)
| 3253 | |
| 3254 | |
| 3255 | public long[] getLongColumn(String name) { |
| 3256 | int col = getColumnIndex(name); |
| 3257 | return (col == -1) ? null : getLongColumn(col); |
| 3258 | } |
| 3259 | |
| 3260 | |
| 3261 | public long[] getLongColumn(int col) { |
nothing calls this directly
no test coverage detected