MCPcopy Index your code
hub / github.com/ddf-project/DDF / project

Method project

core/src/main/java/io/ddf/content/ViewHandler.java:73–79  ·  view source on GitHub ↗
(String... columnNames)

Source from the content-addressed store, hash-verified

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 {

Callers 1

removeColumnsMethod · 0.95

Calls 15

sql2ddfMethod · 0.95
getSchemaMethod · 0.95
getSchemaHandlerMethod · 0.95
getColumnClassMethod · 0.80
getOptionalFactorMethod · 0.80
addMethod · 0.65
joinMethod · 0.65
getColumnsMethod · 0.65
getColumnMethod · 0.65
getDDFMethod · 0.65
getNameMethod · 0.65
setAsFactorMethod · 0.65

Tested by

no test coverage detected