io.nosqlbench.virtdata.library.basics.shared.unary_string.LoadAutoDocsInfo Maven / Gradle / Ivy
// This file is auto-generated.
package io.nosqlbench.virtdata.library.basics.shared.unary_string;
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.unary_string.Load"
)
public class LoadAutoDocsInfo implements DocFuncData {
public String getClassName() {
return "Load";
}
public String getPackageName() {
return "io.nosqlbench.virtdata.library.basics.shared.unary_string";
}
public String getClassJavadoc() {
return "";
}
public String getInType() {
return "java.lang.String";
}
public String getOutType() {
return "java.lang.String";
}
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 a String value from the named variable");
}});
}}
));
add(new DocForFuncCtor("Load", "",
new LinkedHashMap() {{
put("name","java.lang.String");
put("defaultvalue","java.lang.String");
}},
new ArrayList>() {{
add(new ArrayList() {{
add("Load('foo','track05')");
add("for the current thread, load a String value from the named variable, or teh default value if the variable is not yet defined.");
}});
}}
));
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 a String value from the named variable, where the variable name is provided by a function");
}});
}}
));
add(new DocForFuncCtor("Load", "",
new LinkedHashMap() {{
put("nameFunc","java.util.function.Function");
put("defaultValue","java.lang.String");
}},
new ArrayList>() {{
add(new ArrayList() {{
add("Load(NumberNameToString(),'track05')");
add("for the current thread, load a String value from the named variable, where the variable name is provided by a function, or the default value if the variable is not yet defined.");
}});
}}
));
}};
}
}