Send feedback
Class JsonGenerator (1.42.3)
Stay organized with collections
Save and categorize content based on your preferences.
Version 1.42.3 keyboard_arrow_down
public abstract class JsonGenerator implements Closeable , Flushable
Abstract low-level JSON serializer.
Implementation has no fields and therefore thread-safe, but sub-classes are not necessarily
thread-safe.
Inheritance
Object >
JsonGenerator
Constructors
JsonGenerator()
Methods
close()
public abstract void close ()
Closes the serializer and the underlying output stream or writer, and releases any memory
associated with it.
Exceptions
enablePrettyPrint()
public void enablePrettyPrint ()
Requests that the output be pretty printed (by default it is not).
Default implementation does nothing, but implementations may override to provide actual
pretty printing.
Exceptions
Type Description IOException
possible I/O exception (unused in default implementation)
flush()
public abstract void flush ()
Flushes any buffered content to the underlying output stream or writer.
Exceptions
getFactory()
public abstract JsonFactory getFactory ()
Returns the JSON factory from which this generator was created.
Returns
serialize(Object value)
public final void serialize ( Object value )
Serializes the given JSON value object, or if value
is null
it does no
serialization.
Parameter
Exceptions
writeBoolean(boolean state)
public abstract void writeBoolean ( boolean state )
Writes a literal JSON boolean value ('true' or 'false').
Parameter
Exceptions
writeEndArray()
public abstract void writeEndArray ()
Writes a JSON end array character ']'.
Exceptions
writeEndObject()
public abstract void writeEndObject ()
Writes a JSON end object character '}'.
Exceptions
writeFieldName(String name)
public abstract void writeFieldName ( String name )
Writes a JSON quoted field name.
Parameter
Exceptions
writeNull()
public abstract void writeNull ()
Writes a literal JSON null value.
Exceptions
writeNumber(double v)
public abstract void writeNumber ( double v )
Writes a JSON double value.
Parameter
Exceptions
writeNumber(float v)
public abstract void writeNumber ( float v )
Writes a JSON float value.
Parameter
Exceptions
writeNumber(int v)
public abstract void writeNumber ( int v )
Parameter
Exceptions
writeNumber(String encodedValue)
public abstract void writeNumber ( String encodedValue )
Writes a JSON numeric value that has already been encoded properly.
Parameter
Name Description encodedValue
String
Exceptions
writeNumber(BigDecimal v)
public abstract void writeNumber ( BigDecimal v )
Writes a JSON big decimal value.
Parameter
Exceptions
writeNumber(BigInteger v)
public abstract void writeNumber ( BigInteger v )
Writes a JSON big integer value.
Parameter
Exceptions
writeNumber(long v)
public abstract void writeNumber ( long v )
Writes a JSON long value.
Parameter
Exceptions
writeStartArray()
public abstract void writeStartArray ()
Writes a JSON start array character '['.
Exceptions
writeStartObject()
public abstract void writeStartObject ()
Writes a JSON start object character '{'.
Exceptions
writeString(String value)
public abstract void writeString ( String value )
Writes a JSON quoted string value.
Parameter
Exceptions
Send feedback
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-30 UTC.
Need to tell us more?
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-30 UTC."],[],[]]