Examples of GaeaBinaryConvert


Examples of com.bj58.spat.gaea.server.core.convert.GaeaBinaryConvert

public class CustomBinaryConvertTest {

  @Test
  public void testConvertToTObjectClassOfQ() throws Exception {
    Object l = new long[]{1L, 2L, 3L};
    IConvert convert = new GaeaBinaryConvert();
    long[] ary = (long[])convert.convertToT(l, long[].class);
    Assert.assertEquals(1, ary[0]);
    Assert.assertEquals(2, ary[1]);
    Assert.assertEquals(3, ary[2]);
   
    Object LL = new Long[]{1L, 2L};
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.