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

io.virtdata.libbasics.shared.conversions.from_long.ToShortAutoDocsInfo 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_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 ToShortAutoDocsInfo implements DocFuncData {
  public String getClassName() {
    return "ToShort";
  }

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

  public String getClassJavadoc() {
    return "Convert the input value to a short.\n";
  }

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

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

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

  public List getCtors() {
    return new ArrayList() {{
          add(new DocForFuncCtor("ToShort", "", 
            new LinkedHashMap() {{
            }},
            new ArrayList>() {{
            }}
          ));
          add(new DocForFuncCtor("ToShort", "This form allows for limiting the short values at a lower limit than Short.MAX_VALUE.\n"
              + "@param wrapat The maximum value to return.\n", 
            new LinkedHashMap() {{
              put("wrapat","int");
            }},
            new ArrayList>() {{
            }}
          ));
        }};
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy