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

io.quarkus.qson.parser.BufferBuilder Maven / Gradle / Ivy

package io.quarkus.qson.parser;

import java.io.ByteArrayOutputStream;

public class BufferBuilder extends ByteArrayOutputStream {

    public BufferBuilder() {
    }

    public BufferBuilder(int size) {
        super(size);
    }

    public byte[] getBuffer() {
        return buf;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy