JsonParser jsonParser = new JsonParserImpl();
JsonDefaultHandler handler = new JsonDefaultHandler();
jsonParser.parse(new ByteArrayInputStream(source.getBytes()), handler);
JsonValue jsonValue = handler.getJsonObject();
//System.out.println(jsonValue);
BeanWithBookEnum o = ObjectBuilder.createObject(BeanWithBookEnum.class, jsonValue);
assertEquals(BookEnum.BEGINNING_C, o.getBook());
}