|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
JsonGenerator.Feature for list of available features.
PrettyPrinter implementation that uses 2-space
indentation with platform-default linefeeds.JsonGenerator.Feature for list of features)
JsonGenerator.Feature for list of available features.
#getEscapeSequence is needed to figure out exact escape
sequence to output.
JsonGenerators
it creates.
OutputStream or Writer, depending on what
generator was constructed with.
JsonGenerator.JsonStreamContext, which implements
core methods needed, and also exposes
more complete API to generator implementation classes.JsonGenerators
it creates.
org.codehaus.jackson.util.DefaultPrettyPrinter).
JsonGenerator.writeString(String) but that takes as
its input a UTF-8 encoded String that is to be output as-is, without additional
escaping (type of which depends on data format; backslashes for JSON).
writeString(String) but that takes as
its input a UTF-8 encoded String that is to be output as-is, without additional
escaping (type of which depends on data format; backslashes for JSON).
JsonGenerator that outputs JSON content using a Writer
which handles character encoding.JsonGenerator.writeString(String) but that takes as its input
a UTF-8 encoded String which has not been escaped using whatever
escaping scheme data format requires (for JSON that is backslash-escaping
for control characters and double-quotes; for other formats something else).
writeString(String) but that takes as its input
a UTF-8 encoded String which has not been escaped using whatever
escaping scheme data format requires (for JSON that is backslash-escaping
for control characters and double-quotes; for other formats something else).
JsonGenerator.Feature.WRITE_NUMBERS_AS_STRINGS).
JsonGenerator.Features
are enabled.
WriterBasedGenerator._writer.
_writeFieldName, off-lined
to keep the "fast path" as simple (and hopefully fast) as possible.
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||