All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.fastjson.parser.ObjectDeserializer Maven / Gradle / Ivy

Go to download

Fastjson is a JSON processor (JSON parser + JSON generator) written in Java

There is a newer version: 2.0.53
Show newest version
package com.alibaba.fastjson.parser;

import java.lang.reflect.Type;

public interface ObjectDeserializer {
    @Deprecated
     T deserialze(DefaultJSONParser parser, Type type, Object fieldName);

    @Deprecated
    default int getFastMatchToken() {
        return 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy