io.virtdata.libbasics.shared.conversions.from_bytebuffer.DigestToByteBufferAutoDocsInfo 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.conversions.from_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 DigestToByteBufferAutoDocsInfo implements DocFuncData {
public String getClassName() {
return "DigestToByteBuffer";
}
public String getPackageName() {
return "io.virtdata.libbasics.shared.conversions.from_bytebuffer";
}
public String getClassJavadoc() {
return "Computes the digest of the ByteBuffer on input and stores it in the output\n"
+ "ByteBuffer. The digestTypes available are:\n"
+ "\n"
+ " - MD2
\n"
+ " - MD5
\n"
+ " - SHA-1
\n"
+ " - SHA-224
\n"
+ " - SHA-256
\n"
+ " - SHA-384
\n"
+ " - SHA-512
\n"
+ " - SHA3-224
\n"
+ " - SHA3-256
\n"
+ " - SHA3-384
\n"
+ " - SHA3-512
\n"
+ "
\n";
}
public String getInType() {
return "java.nio.ByteBuffer";
}
public String getOutType() {
return "java.nio.ByteBuffer";
}
public Category[] getCategories() {
return new Category[] { Category.conversion };
}
public List getCtors() {
return new ArrayList() {{
add(new DocForFuncCtor("DigestToByteBuffer", "",
new LinkedHashMap() {{
put("digestType","java.lang.String");
}},
new ArrayList>() {{
}}
));
}};
}
}