Uses of Class
com.fasterxml.jackson.core.JsonFactoryBuilder
Packages that use JsonFactoryBuilder
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser
)
and generator
(JsonGenerator
)
instances.-
Uses of JsonFactoryBuilder in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return JsonFactoryBuilderModifier and TypeMethodDescriptionJsonFactoryBuilder.characterEscapes
(CharacterEscapes esc) Method for defining custom escapes factory uses forJsonGenerator
s it creates.JsonFactoryBuilder.configure
(JsonReadFeature f, boolean state) JsonFactoryBuilder.configure
(JsonWriteFeature f, boolean state) JsonFactoryBuilder.disable
(JsonReadFeature f) JsonFactoryBuilder.disable
(JsonReadFeature first, JsonReadFeature... other) JsonFactoryBuilder.disable
(JsonWriteFeature f) JsonFactoryBuilder.disable
(JsonWriteFeature first, JsonWriteFeature... other) JsonFactoryBuilder.enable
(JsonReadFeature f) JsonFactoryBuilder.enable
(JsonReadFeature first, JsonReadFeature... other) JsonFactoryBuilder.enable
(JsonWriteFeature f) JsonFactoryBuilder.enable
(JsonWriteFeature first, JsonWriteFeature... other) JsonFactoryBuilder.highestNonEscapedChar
(int maxNonEscaped) Method that allows specifying threshold beyond which all characters are automatically escaped (without checking possible custom escaping settings a lacharacterEscapes(com.fasterxml.jackson.core.io.CharacterEscapes)
: for example, to force escaping of all non-ASCII characters (set to 127), or all non-Latin-1 character (set to 255).JsonFactoryBuilder.quoteChar
(char ch) Method that allows specifying an alternate character used for quoting field names (if field name quoting has not been disabled withJsonWriteFeature.QUOTE_FIELD_NAMES
) and JSON String values.JsonFactoryBuilder.rootValueSeparator
(SerializableString sep) Method that allows overriding String used for separating root-level JSON values (default is single space character)JsonFactoryBuilder.rootValueSeparator
(String sep) Method that allows overriding String used for separating root-level JSON values (default is single space character)Constructors in com.fasterxml.jackson.core with parameters of type JsonFactoryBuilder