com.alibaba.fastjson2.reader.FieldReaderObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastjson2 Show documentation
Show all versions of fastjson2 Show documentation
Fastjson is a JSON processor (JSON parser + JSON generator) written in Java
package com.alibaba.fastjson2.reader;
import com.alibaba.fastjson2.JSONReader;
public interface FieldReaderObject extends FieldReader {
ObjectReader getFieldObjectReader(JSONReader.Context context);
@Override
default void readFieldValue(JSONReader jsonReader, T object) {
accept(object,
getFieldObjectReader(jsonReader.getContext())
.readObject(jsonReader, 0));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy