All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.virtdata.libbasics.shared.conversions.from_bytebuffer.DigestToByteBufferAutoDocsInfo Maven / Gradle / Ivy

There is a newer version: 2.12.15
Show newest version
// 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>() {{ }} )); }}; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy