entity.setProperty("characterArray", Utils.newArrayList((long) 'c', (long) 'd'));
entity.setProperty("primitiveFloatArray", Utils.newArrayList((double) 1.01f, (double) 1.02f));
entity.setProperty("floatArray", Utils.newArrayList((double) 1.03f, (double) 1.04f));
entity.setProperty("primitiveDoubleArray", Utils.newArrayList(2.01d, 2.02d));
entity.setProperty("doubleArray", Utils.newArrayList(2.03d, 2.04d));
entity.setProperty("primitiveByteArray", new ShortBlob(new byte[] {0xb, 0xc}));
entity.setProperty("byteArray", new ShortBlob(new byte[] {0xe, 0xf}));
entity.setProperty("primitiveBooleanArray", Utils.newArrayList(true, false));
entity.setProperty("booleanArray", Utils.newArrayList(false, true));
entity.setProperty("dateArray", Utils.newArrayList(DATE1, DATE2));
entity.setProperty("ksEnumArray", Utils.newArrayList(
KitchenSinkEnum.TWO.name(), KitchenSinkEnum.ONE.name()));
entity.setProperty("bigDecimalArray", Utils.newArrayList(
BigDecimals.toSortableString(new BigDecimal("3.4444")),
BigDecimals.toSortableString(new BigDecimal("4.3333"))));
entity.setProperty("userArray", Utils.newArrayList(USER1, USER2));
entity.setProperty("blobArray", Utils.newArrayList(BLOB1, BLOB2));
entity.setProperty("textArray", Utils.newArrayList(TEXT1, TEXT2));
entity.setProperty("linkArray", Utils.newArrayList(LINK1, LINK2));
entity.setProperty("shortBlobArray", Utils.newArrayList(SHORTBLOB1, SHORTBLOB2));
entity.setProperty("blobKeyArray", Utils.newArrayList(BLOBKEY1, BLOBKEY2));
entity.setProperty("strList", Utils.newArrayList("p", "q"));
entity.setProperty("integerList", Utils.newArrayList(11L, 12L));
entity.setProperty("longList", Utils.newArrayList(13L, 14L));
entity.setProperty("shortList", Utils.newArrayList((long) (short) 15, (long) (short) 16));
entity.setProperty("byteList", new ShortBlob(new byte[] {(byte) 0x8, (byte) 0x9}));
entity.setProperty("charList", Utils.newArrayList((long) 'q', (long) 'r'));
entity.setProperty("doubleList", Utils.newArrayList(22.44d, 23.55d));
entity.setProperty("floatList", Utils.newArrayList((double) 23.44f, (double) 24.55f));
entity.setProperty("booleanList", Utils.newArrayList(true, false));
entity.setProperty("dateList", Utils.newArrayList(DATE1, DATE2));