io.virtdata.libbasics.shared.from_long.to_other.NullIfLtAutoDocsInfo 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_other;
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 NullIfLtAutoDocsInfo implements DocFuncData {
public String getClassName() {
return "NullIfLt";
}
public String getPackageName() {
return "io.virtdata.libbasics.shared.from_long.to_other";
}
public String getClassJavadoc() {
return "Yields a null if the input value is equal to the specified value.\n";
}
public String getInType() {
return "long";
}
public String getOutType() {
return "java.lang.Long";
}
public Category[] getCategories() {
return new Category[] { Category.nulls };
}
public List getCtors() {
return new ArrayList() {{
add(new DocForFuncCtor("NullIfLt", "",
new LinkedHashMap() {{
put("compareto","long");
}},
new ArrayList>() {{
}}
));
}};
}
}