io.virtdata.libbasics.shared.from_long.to_long.FixedValuesAutoDocsInfo 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_long;
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 FixedValuesAutoDocsInfo implements DocFuncData {
public String getClassName() {
return "FixedValues";
}
public String getPackageName() {
return "io.virtdata.libbasics.shared.from_long.to_long";
}
public String getClassJavadoc() {
return "Yield one of the specified values, rotating through them as the input value\n"
+ "increases.\n";
}
public String getInType() {
return "long";
}
public String getOutType() {
return "long";
}
public Category[] getCategories() {
return new Category[] { };
}
public List getCtors() {
return new ArrayList() {{
add(new DocForFuncCtor("FixedValues", "",
new LinkedHashMap() {{
put("values","long[]...");
}},
new ArrayList>() {{
add(new ArrayList() {{
add("FixedValues(3L,53L,73L)");
add("Yield 3L, 53L, 73L, 3L, 53L, 73L, 3L, ...");
}});
}}
));
}};
}
}