io.nosqlbench.virtdata.api.processors.ExampleManifest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
package io.nosqlbench.virtdata.api.processors;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
public class ExampleManifest {
public List getDocs() {
ArrayList docFuncData = new ArrayList<>();
docFuncData.add(new DocForFunc() {{
setClassName("classname");
setPackageName("packagename");
setClassJavadoc("javadoc");
setInType("intype");
setOutType("outtype");
addCtor("ctordoc",
new LinkedHashMap() {{
put("vname", "vtype");
}},
new ArrayList>() {{
add(new ArrayList() {{
add("syntax");
add("comment)");
}});
}});
}});
return docFuncData;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy