io.virtdata.libbasics.shared.from_double.to_unset.UnsetIfEqAutoDocsInfo 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_double.to_unset;
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 UnsetIfEqAutoDocsInfo implements DocFuncData {
public String getClassName() {
return "UnsetIfEq";
}
public String getPackageName() {
return "io.virtdata.libbasics.shared.from_double.to_unset";
}
public String getClassJavadoc() {
return "";
}
public String getInType() {
return "double";
}
public String getOutType() {
return "java.lang.Double";
}
public Category[] getCategories() {
return new Category[] { Category.nulls };
}
public List getCtors() {
return new ArrayList() {{
add(new DocForFuncCtor("UnsetIfEq", "",
new LinkedHashMap() {{
put("compareto","double");
}},
new ArrayList>() {{
}}
));
}};
}
}