io.virtdata.libbasics.shared.from_long.to_int.HashedLineToIntAutoDocsInfo 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_int;
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 HashedLineToIntAutoDocsInfo implements DocFuncData {
public String getClassName() {
return "HashedLineToInt";
}
public String getPackageName() {
return "io.virtdata.libbasics.shared.from_long.to_int";
}
public String getClassJavadoc() {
return "Return a pseudo-randomly selected integer value from a file of numeric values.\n"
+ "Each line in the file must contain one parsable integer value.\n";
}
public String getInType() {
return "long";
}
public String getOutType() {
return "int";
}
public Category[] getCategories() {
return new Category[] { };
}
public List getCtors() {
return new ArrayList() {{
add(new DocForFuncCtor("HashedLineToInt", "",
new LinkedHashMap() {{
put("filename","java.lang.String");
}},
new ArrayList>() {{
}}
));
}};
}
}