io.virtdata.libbasics.shared.from_long.to_bytebuffer.HashedToByteBufferAutoDocsInfo 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_bytebuffer;
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 HashedToByteBufferAutoDocsInfo implements DocFuncData {
public String getClassName() {
return "HashedToByteBuffer";
}
public String getPackageName() {
return "io.virtdata.libbasics.shared.from_long.to_bytebuffer";
}
public String getClassJavadoc() {
return "Hash a long input value into a byte buffer, at least length bytes long, but aligned on 8-byte\n"
+ "boundary;\n";
}
public String getInType() {
return "long";
}
public String getOutType() {
return "java.nio.ByteBuffer";
}
public Category[] getCategories() {
return new Category[] { };
}
public List getCtors() {
return new ArrayList() {{
add(new DocForFuncCtor("HashedToByteBuffer", "",
new LinkedHashMap() {{
put("lengthInBytes","int");
}},
new ArrayList>() {{
}}
));
}};
}
}