![JAR search and dependency download from the Maven repository](/logo.png)
io.nosqlbench.virtdata.library.basics.shared.stateful.LoadAutoDocsInfo Maven / Gradle / Ivy
// This file is auto-generated.
package io.nosqlbench.virtdata.library.basics.shared.stateful;
import io.nosqlbench.nb.annotations.Service;
import io.nosqlbench.virtdata.api.annotations.Category;
import io.nosqlbench.virtdata.api.processors.DocCtorData;
import io.nosqlbench.virtdata.api.processors.DocForFuncCtor;
import io.nosqlbench.virtdata.api.processors.DocFuncData;
import java.lang.String;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
@Service(
value = DocFuncData.class,
selector = "io.nosqlbench.virtdata.library.basics.shared.stateful.Load"
)
public class LoadAutoDocsInfo implements DocFuncData {
public String getClassName() {
return "Load";
}
public String getPackageName() {
return "io.nosqlbench.virtdata.library.basics.shared.stateful";
}
public String getClassJavadoc() {
return "";
}
public String getInType() {
return "java.lang.Object";
}
public String getOutType() {
return "java.lang.Object";
}
public Category[] getCategories() {
return new Category[] { Category.state };
}
public List getCtors() {
return new ArrayList() {{
add(new DocForFuncCtor("Load", "",
new LinkedHashMap() {{
put("name","java.lang.String");
}},
new ArrayList>() {{
add(new ArrayList() {{
add("Load('foo')");
add("for the current thread, load an Object value from the named variable");
}});
}}
));
add(new DocForFuncCtor("Load", "",
new LinkedHashMap() {{
put("nameFunc","java.util.function.Function");
}},
new ArrayList>() {{
add(new ArrayList() {{
add("Load(NumberNameToString())");
add("for the current thread, load an Object value from the named variable, where the variable name is returned by the provided function");
}});
}}
));
add(new DocForFuncCtor("Load", "",
new LinkedHashMap() {{
put("name","java.lang.String");
put("defaultValue","java.lang.Object");
}},
new ArrayList>() {{
add(new ArrayList() {{
add("Load('foo','testvalue')");
add("for the current thread, load an Object value from the named variable, or the default value if the variable is not yet defined.");
}});
}}
));
add(new DocForFuncCtor("Load", "",
new LinkedHashMap() {{
put("nameFunc","java.util.function.Function");
put("defaultValue","java.lang.Object");
}},
new ArrayList>() {{
add(new ArrayList() {{
add("Load(NumberNameToString(),'testvalue')");
add("for the current thread, load an Object value from the named variable, where the variable name is returned by the provided function, or thedefault value if the variable is not yet defined.");
}});
}}
));
}};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy