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

io.virtdata.libbasics.shared.stateful.LoadDoubleAutoDocsInfo Maven / Gradle / Ivy

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

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

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

  public String getClassJavadoc() {
    return "Load a value from a named thread-local variable, where the variable\n"
            + "name is fixed or a generated variable name from a provided function.\n"
            + "If the named variable is not defined, then the default value is returned.\n";
  }

  public String getInType() {
    return "java.lang.Object";
  }

  public String getOutType() {
    return "java.lang.Double";
  }

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

  public List getCtors() {
    return new ArrayList() {{
          add(new DocForFuncCtor("LoadDouble", "", 
            new LinkedHashMap() {{
              put("name","java.lang.String");
            }},
            new ArrayList>() {{
              add(new ArrayList() {{
                add("LoadDouble('foo')");
                add("for the current thread, load a double value from the named variable.");
              }});
            }}
          ));
          add(new DocForFuncCtor("LoadDouble", "", 
            new LinkedHashMap() {{
              put("name","java.lang.String");
              put("defaultValue","double");
            }},
            new ArrayList>() {{
              add(new ArrayList() {{
                add("LoadDouble('foo',23D)");
                add("for the current thread, load a double value from the named variable,or the default value if the named variable is not defined.");
              }});
            }}
          ));
          add(new DocForFuncCtor("LoadDouble", "", 
            new LinkedHashMap() {{
              put("nameFunc","java.util.function.Function");
            }},
            new ArrayList>() {{
              add(new ArrayList() {{
                add("LoadDouble(NumberNameToString())");
                add("for the current thread, load a double value from the named variable, where the variable name is provided by a function.");
              }});
            }}
          ));
          add(new DocForFuncCtor("LoadDouble", "", 
            new LinkedHashMap() {{
              put("nameFunc","java.util.function.Function");
              put("defaultValue","double");
            }},
            new ArrayList>() {{
              add(new ArrayList() {{
                add("LoadDouble(NumberNameToString(),23D)");
                add("for the current thread, load a double value from the named variable,where the variable name is provided by a function, or the default value if the namedvariable is not defined.");
              }});
            }}
          ));
        }};
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy