io.virtdata.libbasics.shared.from_long.to_collection.HashedLineToStringSetAutoDocsInfo 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_collection;
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 HashedLineToStringSetAutoDocsInfo implements DocFuncData {
public String getClassName() {
return "HashedLineToStringSet";
}
public String getPackageName() {
return "io.virtdata.libbasics.shared.from_long.to_collection";
}
public String getClassJavadoc() {
return "Return a pseudo-randomly created Set from the values in\n"
+ "the specified file.\n";
}
public String getInType() {
return "long";
}
public String getOutType() {
return "java.util.Set";
}
public Category[] getCategories() {
return new Category[] { Category.collections };
}
public List getCtors() {
return new ArrayList() {{
add(new DocForFuncCtor("HashedLineToStringSet", "",
new LinkedHashMap() {{
put("filename","java.lang.String");
put("minSize","int");
put("maxSize","int");
}},
new ArrayList>() {{
add(new ArrayList() {{
add("HashedLineToStringSet('data/variable_words.txt',2,10)");
add("Create a set of words sized between 2 and 10 elements");
}});
}}
));
}};
}
}