Package | Description |
---|---|
com.fasterxml.jackson.core |
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser )
and generator
(JsonGenerator )
instances. |
com.fasterxml.jackson.core.json |
JSON-specific parser and generator implementation classes that
Jackson defines and uses.
|
com.fasterxml.jackson.core.util |
Utility classes used by Jackson Core functionality.
|
Modifier and Type | Class and Description |
---|---|
class |
JsonpCharacterEscapes
Convenience
CharacterEscapes implementation that escapes
Unicode characters `0x2028` and `0x2029` (in addition to characters
escaped otherwise), which are apparently considered linefeeds as
per newer Javascript specifications, and consequently problematic
when using JSONP (see https://en.wikipedia.org/wiki/JSONP). |
Modifier and Type | Field and Description |
---|---|
protected CharacterEscapes |
JsonFactory._characterEscapes
Definition of custom character escapes to use for generators created
by this factory, if any.
|
Modifier and Type | Method and Description |
---|---|
CharacterEscapes |
JsonGenerator.getCharacterEscapes()
Method for accessing custom escapes factory uses for
JsonGenerator s
it creates. |
CharacterEscapes |
JsonFactory.getCharacterEscapes()
Method for accessing custom escapes factory uses for
JsonGenerator s
it creates. |
Modifier and Type | Method and Description |
---|---|
JsonGenerator |
JsonGenerator.setCharacterEscapes(CharacterEscapes esc)
Method for defining custom escapes factory uses for
JsonGenerator s
it creates. |
JsonFactory |
JsonFactory.setCharacterEscapes(CharacterEscapes esc)
Method for defining custom escapes factory uses for
JsonGenerator s
it creates. |
Modifier and Type | Field and Description |
---|---|
protected CharacterEscapes |
JsonGeneratorImpl._characterEscapes
Definition of custom character escapes to use for generators created
by this factory, if any.
|
Modifier and Type | Method and Description |
---|---|
CharacterEscapes |
JsonGeneratorImpl.getCharacterEscapes()
Method for accessing custom escapes factory uses for
JsonGenerator s
it creates. |
Modifier and Type | Method and Description |
---|---|
JsonGenerator |
JsonGeneratorImpl.setCharacterEscapes(CharacterEscapes esc) |
Modifier and Type | Method and Description |
---|---|
CharacterEscapes |
JsonGeneratorDelegate.getCharacterEscapes() |
Modifier and Type | Method and Description |
---|---|
JsonGenerator |
JsonGeneratorDelegate.setCharacterEscapes(CharacterEscapes esc) |
Copyright © 2008-2016 FasterXML. All Rights Reserved.