io.virtdata.libbasics.shared.from_long.to_double.InterpolateAutoDocsInfo 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.from_long.to_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 InterpolateAutoDocsInfo implements DocFuncData {
public String getClassName() {
return "Interpolate";
}
public String getPackageName() {
return "io.virtdata.libbasics.shared.from_long.to_double";
}
public String getClassJavadoc() {
return "";
}
public String getInType() {
return "long";
}
public String getOutType() {
return "double";
}
public Category[] getCategories() {
return new Category[] { };
}
public List getCtors() {
return new ArrayList() {{
add(new DocForFuncCtor("Interpolate", "",
new LinkedHashMap() {{
put("values","double[]...");
}},
new ArrayList>() {{
add(new ArrayList() {{
add("Interpolate(0.0d,100.0d)");
add("return a uniform double value between 0.0d and 100.0d");
}});
add(new ArrayList() {{
add("Interpolate(0.0d,90.0d,95.0d,98.0d,100.0d)");
add("return a weighted double value where the first second and third quartiles are 90.0D, 95.0D, and 98.0D");
}});
}}
));
}};
}
}