Uses of Class
tools.jackson.core.json.JsonFactoryBuilder
Packages that use JsonFactoryBuilder
Package
Description
JSON-specific parser and generator implementation classes that
Jackson defines and uses.
-
Uses of JsonFactoryBuilder in tools.jackson.core.json
Methods in tools.jackson.core.json that return JsonFactoryBuilderModifier and TypeMethodDescriptionstatic JsonFactoryBuilderJsonFactory.builder()Main factory method to use for constructingJsonFactoryinstances with different configuration.static JsonFactoryBuilderJsonFactory.builderWithJackson2Defaults()Factory method to use for constructingJsonFactoryinstances with different configuration.JsonFactoryBuilder.characterEscapes(CharacterEscapes esc) Method for defining custom escapes factory uses forJsonGenerators it creates.JsonFactoryBuilder.configure(JsonReadFeature f, boolean state) JsonFactoryBuilder.configure(JsonWriteFeature f, boolean state) JsonFactoryBuilder.configureForJackson2()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(tools.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 Object Property names (if name quoting has not been disabled withJsonWriteFeature.QUOTE_PROPERTY_NAMES) and JSON String values.JsonFactory.rebuild()JsonFactoryBuilder.rootValueSeparator(String sep) Method that allows overriding String used for separating root-level JSON values (default is single space character)JsonFactoryBuilder.rootValueSeparator(SerializableString sep) Method that allows overriding String used for separating root-level JSON values (default is single space character)Constructors in tools.jackson.core.json with parameters of type JsonFactoryBuilderModifierConstructorDescriptionprotectedConstructors used byJsonFactoryBuilderfor instantiation.