예제 #1
0
파일: JSON.java 프로젝트: KF5/JAVA-SDK
 @SuppressWarnings("unchecked")
 public static final <T> T parseObject(byte[] input, Type clazz, Feature... features) {
   return (T)
       parseObject(input, 0, input.length, ThreadLocalCache.getUTF8Decoder(), clazz, features);
 }
예제 #2
0
파일: JSON.java 프로젝트: KF5/JAVA-SDK
 public static final Object parse(byte[] input, Feature... features) {
   return parse(input, 0, input.length, ThreadLocalCache.getUTF8Decoder(), features);
 }