Package erjang

Examples of erjang.EInteger.testSmall()


  @Override
  public ESmall testSmall() {
    EInteger iv;
    if ((iv = testInteger()) != null) {
      return iv.testSmall();
    }

    return null;
  }
 
View Full Code Here


      throw ERT.badarg(arg, radix);

    String out;
    EBig big;
    ESmall small;
    if ((small=i.testSmall()) != null) {
      out = Integer.toString(small.value, r.value);
    } else if ((big=i.testBig()) != null) {
      out = big.value.toString(r.value);
    } else {
      throw ERT.badarg(arg, radix);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.