io.virtdata.libbasics.shared.conversions.from_double.ToByteAutoDocsInfo 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 ToByteAutoDocsInfo implements DocFuncData {
public String getClassName() {
return "ToByte";
}
public String getPackageName() {
return "io.virtdata.libbasics.shared.conversions.from_double";
}
public String getClassJavadoc() {
return "Convert the input value to a {@code Byte}.\n";
}
public String getInType() {
return "double";
}
public String getOutType() {
return "java.lang.Byte";
}
public Category[] getCategories() {
return new Category[] { Category.conversion };
}
public List getCtors() {
return new ArrayList() {{
add(new DocForFuncCtor("ToByte", "",
new LinkedHashMap() {{
}},
new ArrayList>() {{
}}
));
add(new DocForFuncCtor("ToByte", "",
new LinkedHashMap() {{
put("modulo","int");
}},
new ArrayList>() {{
}}
));
}};
}
}