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

io.virtdata.libbasics.shared.from_long.to_double.InterpolateAutoDocsInfo 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 InterpolateAutoDocsInfo implements DocFuncData {
  public String getClassName() {
    return "Interpolate";
  }

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

  public String getClassJavadoc() {
    return "";
  }

  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("Interpolate", "", 
            new LinkedHashMap() {{
              put("values","double[]...");
            }},
            new ArrayList>() {{
              add(new ArrayList() {{
                add("Interpolate(0.0d,100.0d)");
                add("return a uniform double value between 0.0d and 100.0d");
              }});
              add(new ArrayList() {{
                add("Interpolate(0.0d,90.0d,95.0d,98.0d,100.0d)");
                add("return a weighted double value where the first second and third quartiles are 90.0D, 95.0D, and 98.0D");
              }});
            }}
          ));
        }};
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy