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

shade.com.alibaba.fastjson2.reader.ByteArrayValueConsumer Maven / Gradle / Ivy

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

import java.nio.charset.Charset;

public interface ByteArrayValueConsumer {
    default void start() {
    }

    default void beforeRow(int row) {
    }

    void accept(int row, int column, byte[] bytes, int off, int len, Charset charset);

    default void afterRow(int row) {
    }

    default void end() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy