MCPcopy Create free account
hub / github.com/ddf-project/DDF / DDF

Method DDF

core/src/main/java/io/ddf/DDF.java:99–105  ·  view source on GitHub ↗

@param data The DDF data @param namespace The namespace to place this DDF in. If null, it will be picked up from the DDFManager's current namespace. @param name The name for this DDF. If null, it will come from the given schema. If that's null, a UUID-based name will

(DDFManager manager, Object data, Class<?>[] typeSpecs,
             String namespace, String name, Schema schema)

Source from the content-addressed store, hash-verified

97 * @throws DDFException
98 */
99 public DDF(DDFManager manager, Object data, Class<?>[] typeSpecs,
100 String namespace, String name, Schema schema)
101 throws DDFException {
102
103 this.initialize(manager, data, typeSpecs, namespace, name,
104 schema);
105 }
106
107 abstract public DDF copy() throws DDFException;
108

Callers

nothing calls this directly

Calls 1

initializeMethod · 0.95

Tested by

no test coverage detected