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

com.alibaba.fastjson2.JsonbCoder Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.alibaba.fastjson2;

/**
 * @author caihongming
 * @version v1.0
 * @date 2022-07-07
 **/
public interface JsonbCoder {

    static JSONWriter ofJsonbWriter(JSONWriter.Context writeContext) {
        return new JSONWriterJSONB(writeContext, null);
    }

    static JSONReader ofJsonbReader(JSONReader.Context readContext, byte[] jsonbBytes) {
        return new JSONReaderJSONB(readContext, jsonbBytes, 0, jsonbBytes.length, null);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy