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

io.yawp.commons.utils.json.CustomJsonWriter Maven / Gradle / Ivy

There is a newer version: 2.08alpha
Show newest version
package io.yawp.commons.utils.json;

import com.google.gson.stream.JsonWriter;

import java.io.IOException;
import java.io.Writer;

public class CustomJsonWriter extends JsonWriter {

    private final Writer out;

    public CustomJsonWriter(Writer out) {
        super(out);
        this.out = out;
    }

    public void write(String s) throws IOException {
        out.write(s);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy