(String... columnNames)
| 71 | } |
| 72 | |
| 73 | @Override |
| 74 | public DDF project(String... columnNames) throws DDFException { |
| 75 | if (columnNames == null || columnNames.length == 0) throw new DDFException("columnNames must be specified"); |
| 76 | List<String> colNames = new ArrayList<String>(columnNames.length); |
| 77 | for(String col: columnNames) {colNames.add(col);} |
| 78 | return project(colNames); |
| 79 | } |
| 80 | |
| 81 | @Override |
| 82 | public DDF project(List<String> columnNames) throws DDFException { |
no test coverage detected