Package org.hisrc.jscm.codemodel.literal

Examples of org.hisrc.jscm.codemodel.literal.JSDecimalIntegerLiteral.asLong()


  }

  @Test
  public void integer() {
    JSDecimalIntegerLiteral integer = codeModel.integer(1);
    Assert.assertEquals(1, integer.asLong());
    Assert.assertEquals(1, integer.asNumber().longValue());
    Assert.assertEquals(1, integer.asDecimal().longValue());

  }
}
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.