|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.fasterxml.jackson.core.JsonGenerator
com.fasterxml.jackson.core.base.GeneratorBase
com.fasterxml.jackson.core.json.JsonGeneratorImpl
public abstract class JsonGeneratorImpl
Intermediate base class shared by JSON-backed generators
like UTF8JsonGenerator
and WriterBasedJsonGenerator
.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonGenerator |
---|
JsonGenerator.Feature |
Field Summary | |
---|---|
protected CharacterEscapes |
_characterEscapes
Definition of custom character escapes to use for generators created by this factory, if any. |
protected IOContext |
_ioContext
|
protected int |
_maximumNonEscapedChar
Value between 128 (0x80) and 65535 (0xFFFF) that indicates highest Unicode code point that will not need escaping; or 0 to indicate that all characters can be represented without escaping. |
protected int[] |
_outputEscapes
Currently active set of output escape code definitions (whether and how to escape or not) for 7-bit ASCII range (first 128 character codes). |
protected SerializableString |
_rootValueSeparator
Separator to use, if any, between root-level values. |
protected static int[] |
sOutputEscapes
This is the default set of escape codes, over 7-bit ASCII range (first 128 character codes), used for single-byte UTF-8 characters. |
Fields inherited from class com.fasterxml.jackson.core.base.GeneratorBase |
---|
_cfgNumbersAsStrings, _closed, _features, _objectCodec, _writeContext |
Fields inherited from class com.fasterxml.jackson.core.JsonGenerator |
---|
_cfgPrettyPrinter |
Constructor Summary | |
---|---|
JsonGeneratorImpl(IOContext ctxt,
int features,
ObjectCodec codec)
|
Method Summary | |
---|---|
CharacterEscapes |
getCharacterEscapes()
Method for accessing custom escapes factory uses for JsonGenerator s
it creates. |
int |
getHighestEscapedChar()
Accessor method for testing what is the highest unescaped character configured for this generator. |
JsonGenerator |
setCharacterEscapes(CharacterEscapes esc)
Method for defining custom escapes factory uses for JsonGenerator s
it creates. |
JsonGenerator |
setHighestNonEscapedChar(int charCode)
Method that can be called to request that generator escapes all character codes above specified code point (if positive value); or, to not escape any characters except for ones that must be escaped for the data format (if -1). |
JsonGenerator |
setRootValueSeparator(SerializableString sep)
Method that allows overriding String used for separating root-level JSON values (default is single space character) |
Version |
version()
Implemented with detection that tries to find "VERSION.txt" in same package as the implementation class. |
void |
writeStringField(String fieldName,
String value)
Convenience method for outputting a field entry ("member") that has a String value. |
Methods inherited from class com.fasterxml.jackson.core.base.GeneratorBase |
---|
_cantHappen, _releaseBuffers, _reportError, _reportUnsupportedOperation, _throwInternal, _verifyValueWrite, _writeSimpleObject, close, copyCurrentEvent, copyCurrentStructure, disable, enable, flush, getCodec, getOutputContext, isClosed, isEnabled, setCodec, useDefaultPrettyPrinter, writeBinary, writeFieldName, writeObject, writeRawValue, writeRawValue, writeRawValue, writeString, writeTree |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected static final int[] sOutputEscapes
protected final IOContext _ioContext
protected int[] _outputEscapes
protected int _maximumNonEscapedChar
NOTE: not all sub-classes make use of this setting.
protected CharacterEscapes _characterEscapes
protected SerializableString _rootValueSeparator
Constructor Detail |
---|
public JsonGeneratorImpl(IOContext ctxt, int features, ObjectCodec codec)
Method Detail |
---|
public JsonGenerator setHighestNonEscapedChar(int charCode)
JsonGenerator
Note that generators are NOT required to support setting of value higher than 127, because there are other ways to affect quoting (or lack thereof) of character codes between 0 and 127. Not all generators support concept of escaping, either; if so, calling this method will have no effect.
Default implementation does nothing; sub-classes need to redefine it according to rules of supported data format.
setHighestNonEscapedChar
in class JsonGenerator
charCode
- Either -1 to indicate that no additional escaping
is to be done; or highest code point not to escape (meaning higher
ones will be), if positive value.public int getHighestEscapedChar()
JsonGenerator
getHighestEscapedChar
in class JsonGenerator
public JsonGenerator setCharacterEscapes(CharacterEscapes esc)
JsonGenerator
JsonGenerator
s
it creates.
setCharacterEscapes
in class JsonGenerator
public CharacterEscapes getCharacterEscapes()
JsonGenerator
s
it creates.
getCharacterEscapes
in class JsonGenerator
public JsonGenerator setRootValueSeparator(SerializableString sep)
JsonGenerator
setRootValueSeparator
in class JsonGenerator
sep
- Separator to use, if any; null means that no separator is
automatically addedpublic Version version()
GeneratorBase
version
in interface Versioned
version
in class GeneratorBase
public final void writeStringField(String fieldName, String value) throws IOException, JsonGenerationException
JsonGenerator
writeFieldName(fieldName); writeString(value);
Note: many performance-sensitive implementations override this method
writeStringField
in class JsonGenerator
IOException
JsonGenerationException
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |