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

io.virtdata.libbasics.shared.from_long.to_other.NullIfLeAutoDocsInfo 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_other;

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

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

  public String getClassJavadoc() {
    return "Yields a null if the input value is less than or equal to\n"
            + "the specified value.\n";
  }

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

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

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

  public List getCtors() {
    return new ArrayList() {{
          add(new DocForFuncCtor("NullIfLe", "", 
            new LinkedHashMap() {{
              put("compareto","long");
            }},
            new ArrayList>() {{
            }}
          ));
        }};
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy