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

com.reandroid.json.JSONStringer Maven / Gradle / Ivy

There is a newer version: 1.3.5
Show newest version
/*
 * Copyright (c) 2002 JSON.org (now "Public Domain")
 * This is NOT property of REAndroid
 * This package is renamed from org.json.* to avoid class conflict when used on anroid platforms
*/
package com.reandroid.json;

import java.io.StringWriter;

public class JSONStringer extends JSONWriter {

    public JSONStringer() {
        super(new StringWriter());
    }

    @Override
    public String toString() {
        return this.mode == 'd' ? this.writer.toString() : null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy