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

android.util.JsonWriter Maven / Gradle / Ivy

Go to download

provide android hidden api definition ,helper for android super framework development

There is a newer version: 1.11
Show newest version
package android.util;
public final class JsonWriter
  implements java.io.Closeable
{
public  JsonWriter(java.io.Writer out) { throw new RuntimeException("Stub!"); }
public  void setIndent(java.lang.String indent) { throw new RuntimeException("Stub!"); }
public  void setLenient(boolean lenient) { throw new RuntimeException("Stub!"); }
public  boolean isLenient() { throw new RuntimeException("Stub!"); }
public  android.util.JsonWriter beginArray() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  android.util.JsonWriter endArray() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  android.util.JsonWriter beginObject() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  android.util.JsonWriter endObject() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  android.util.JsonWriter name(java.lang.String name) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  android.util.JsonWriter value(java.lang.String value) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  android.util.JsonWriter nullValue() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  android.util.JsonWriter value(boolean value) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  android.util.JsonWriter value(double value) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  android.util.JsonWriter value(long value) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  android.util.JsonWriter value(java.lang.Number value) throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  void flush() throws java.io.IOException { throw new RuntimeException("Stub!"); }
public  void close() throws java.io.IOException { throw new RuntimeException("Stub!"); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy