@param columnName @return
(String columnName)
| 966 | * @return |
| 967 | */ |
| 968 | public int getColumnIndex(String columnName) throws DDFException { |
| 969 | return this.getSchema().getColumnIndex(columnName); |
| 970 | } |
| 971 | |
| 972 | public String getColumnName(int columnIndex) throws DDFException { |
| 973 | return this.getSchema().getColumnName(columnIndex); |
nothing calls this directly
no test coverage detected