Uses of Class
com.fasterxml.jackson.core.io.CharacterEscapes
-
Packages that use CharacterEscapes Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused 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. -
-
Uses of CharacterEscapes in com.fasterxml.jackson.core
Subclasses of CharacterEscapes in com.fasterxml.jackson.core Modifier and Type Class Description classJsonpCharacterEscapesConvenienceCharacterEscapesimplementation 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).Fields in com.fasterxml.jackson.core declared as CharacterEscapes Modifier and Type Field Description protected CharacterEscapesJsonFactory. _characterEscapesDefinition of custom character escapes to use for generators created by this factory, if any.Methods in com.fasterxml.jackson.core that return CharacterEscapes Modifier and Type Method Description CharacterEscapesJsonFactory. getCharacterEscapes()Method for accessing custom escapes factory uses forJsonGenerators it creates.CharacterEscapesJsonGenerator. getCharacterEscapes()Method for accessing custom escapes factory uses forJsonGenerators it creates.Methods in com.fasterxml.jackson.core with parameters of type CharacterEscapes Modifier and Type Method Description JsonFactoryJsonFactory. setCharacterEscapes(CharacterEscapes esc)Method for defining custom escapes factory uses forJsonGenerators it creates.JsonGeneratorJsonGenerator. setCharacterEscapes(CharacterEscapes esc)Method for defining custom escapes factory uses forJsonGenerators it creates. -
Uses of CharacterEscapes in com.fasterxml.jackson.core.json
Fields in com.fasterxml.jackson.core.json declared as CharacterEscapes Modifier and Type Field Description protected CharacterEscapesJsonGeneratorImpl. _characterEscapesDefinition of custom character escapes to use for generators created by this factory, if any.Methods in com.fasterxml.jackson.core.json that return CharacterEscapes Modifier and Type Method Description CharacterEscapesJsonGeneratorImpl. getCharacterEscapes()Method for accessing custom escapes factory uses forJsonGenerators it creates.Methods in com.fasterxml.jackson.core.json with parameters of type CharacterEscapes Modifier and Type Method Description JsonGeneratorJsonGeneratorImpl. setCharacterEscapes(CharacterEscapes esc) -
Uses of CharacterEscapes in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that return CharacterEscapes Modifier and Type Method Description CharacterEscapesJsonGeneratorDelegate. getCharacterEscapes()Methods in com.fasterxml.jackson.core.util with parameters of type CharacterEscapes Modifier and Type Method Description JsonGeneratorJsonGeneratorDelegate. setCharacterEscapes(CharacterEscapes esc)
-