com.jsoniter.output.ReflectionArrayEncoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsoniter Show documentation
Show all versions of jsoniter Show documentation
jsoniter (json-iterator) is fast and flexible JSON parser available in Java and Go
package com.jsoniter.output;
import com.jsoniter.any.Any;
import com.jsoniter.spi.Encoder;
import com.jsoniter.spi.TypeLiteral;
import java.io.IOException;
import java.lang.reflect.Array;
import java.lang.reflect.Type;
class ReflectionArrayEncoder implements Encoder.ReflectionEncoder {
private final TypeLiteral compTypeLiteral;
public ReflectionArrayEncoder(Class clazz, Type[] typeArgs) {
compTypeLiteral = TypeLiteral.create(clazz.getComponentType());
}
@Override
public void encode(Object obj, JsonStream stream) throws IOException {
if (null == obj) {
stream.writeNull();
return;
}
int len = Array.getLength(obj);
if (len == 0) {
stream.writeEmptyArray();
return;
}
stream.writeArrayStart();
stream.writeIndention();
stream.writeVal(compTypeLiteral, Array.get(obj, 0));
for (int i = 1; i < len; i++) {
stream.writeMore();
stream.writeVal(compTypeLiteral, Array.get(obj, i));
}
stream.writeArrayEnd();
}
@Override
public Any wrap(Object obj) {
return Any.wrapArray(obj);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy