io.virtdata.libbasics.shared.conversions.from_double.ToStringAutoDocsInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of virtdata-lib-realer Show documentation
Show all versions of virtdata-lib-realer Show documentation
With inspiration from other libraries
// This file is auto-generated.
package io.virtdata.libbasics.shared.conversions.from_double;
import io.virtdata.annotations.Category;
import io.virtdata.annotations.Service;
import io.virtdata.processors.DocCtorData;
import io.virtdata.processors.DocForFuncCtor;
import io.virtdata.processors.DocFuncData;
import java.lang.String;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
@Service(DocFuncData.class)
public class ToStringAutoDocsInfo implements DocFuncData {
public String getClassName() {
return "ToString";
}
public String getPackageName() {
return "io.virtdata.libbasics.shared.conversions.from_double";
}
public String getClassJavadoc() {
return "";
}
public String getInType() {
return "double";
}
public String getOutType() {
return "java.lang.String";
}
public Category[] getCategories() {
return new Category[] { Category.conversion };
}
public List getCtors() {
return new ArrayList() {{
add(new DocForFuncCtor("ToString", "",
new LinkedHashMap() {{
}},
new ArrayList>() {{
add(new ArrayList() {{
add("ToString()");
add("map the double input value to a String");
}});
}}
));
add(new DocForFuncCtor("ToString", "",
new LinkedHashMap() {{
put("df","java.util.function.DoubleUnaryOperator");
}},
new ArrayList>() {{
add(new ArrayList() {{
add("ToString(Add(5.7D))");
add("map the double input value X to X+5.7D and then to a String");
}});
}}
));
add(new DocForFuncCtor("ToString", "",
new LinkedHashMap() {{
put("df","java.util.function.DoubleFunction");
}},
new ArrayList>() {{
}}
));
add(new DocForFuncCtor("ToString", "",
new LinkedHashMap() {{
put("df","java.util.function.Function");
}},
new ArrayList>() {{
}}
));
}};
}
}