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

io.virtdata.libbasics.shared.from_long.to_double.HashedDoubleRangeAutoDocsInfo Maven / Gradle / Ivy

There is a newer version: 2.12.15
Show newest version
// This file is auto-generated.
package io.virtdata.libbasics.shared.from_long.to_double;

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 HashedDoubleRangeAutoDocsInfo implements DocFuncData {
  public String getClassName() {
    return "HashedDoubleRange";
  }

  public String getPackageName() {
    return "io.virtdata.libbasics.shared.from_long.to_double";
  }

  public String getClassJavadoc() {
    return "Return a double value within the specified range. This function\n"
            + "uses an intermediate long to arrive at the sampled value before\n"
            + "conversion to double, thus providing a more linear sample at the\n"
            + "expense of some precision at extremely large values.\n";
  }

  public String getInType() {
    return "long";
  }

  public String getOutType() {
    return "double";
  }

  public Category[] getCategories() {
    return new Category[] {  };
  }

  public List getCtors() {
    return new ArrayList() {{
          add(new DocForFuncCtor("HashedDoubleRange", "", 
            new LinkedHashMap() {{
              put("min","double");
              put("max","double");
            }},
            new ArrayList>() {{
            }}
          ));
        }};
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy