Package kiss.lang.expression

Examples of kiss.lang.expression.Cast


  }
 
  @SuppressWarnings("unused")
  @Test public void testCast() {
    try {
      Cast cast=Cast.create(String.class, Constant.create(10));
      fail("Cast should throw exception if cast is not possible");
    } catch (KissException ke) {
      // OK!
    }
   
View Full Code Here

TOP

Related Classes of kiss.lang.expression.Cast

Copyright © 2018 www.massapicom. 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.