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

io.virtdata.libbasics.shared.from_long.to_long.SwapAutoDocsInfo 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_long;

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

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

  public String getClassJavadoc() {
    return "";
  }

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

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

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

  public List getCtors() {
    return new ArrayList() {{
          add(new DocForFuncCtor("Swap", "", 
            new LinkedHashMap() {{
              put("name","java.lang.String");
            }},
            new ArrayList>() {{
              add(new ArrayList() {{
                add("Swap('foo')");
                add("for the current thread, swap the input value with the named variable and returned the named variable.");
              }});
            }}
          ));
          add(new DocForFuncCtor("Swap", "", 
            new LinkedHashMap() {{
              put("name","java.lang.String");
              put("defaultValue","long");
            }},
            new ArrayList>() {{
              add(new ArrayList() {{
                add("Swap('foo',234L)");
                add("for the current thread, swap the input value with the named variable and returned the named variable,or the default value if the named variable is not defined.");
              }});
            }}
          ));
          add(new DocForFuncCtor("Swap", "", 
            new LinkedHashMap() {{
              put("nameFunc","java.util.function.LongFunction");
            }},
            new ArrayList>() {{
              add(new ArrayList() {{
                add("Swap(NumberNameToString())");
                add("for the current thread, swap the input value with the named variable and returned the named variable, where the variable name is generated by the provided function.");
              }});
            }}
          ));
          add(new DocForFuncCtor("Swap", "", 
            new LinkedHashMap() {{
              put("nameFunc","java.util.function.LongFunction");
              put("defaultValue","long");
            }},
            new ArrayList>() {{
              add(new ArrayList() {{
                add("Swap(NumberNameToString(), 234L)");
                add("for the current thread, swap the input value with the named variable and returned the named variable, where the variable name is generated by the provided function, or the default value if the named variable is not defined.");
              }});
            }}
          ));
        }};
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy