Uses of Class
com.fasterxml.jackson.core.JsonProcessingException
-
Packages that use JsonProcessingException 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.base Base classes used by concrete Parser and Generator implementations; contain functionality that is not specific to JSON or input abstraction (byte vs char).com.fasterxml.jackson.core.filter com.fasterxml.jackson.core.io com.fasterxml.jackson.core.json JSON-specific parser and generator implementation classes that Jackson defines and uses. -
-
Uses of JsonProcessingException in com.fasterxml.jackson.core
Subclasses of JsonProcessingException in com.fasterxml.jackson.core Modifier and Type Class Description classJsonGenerationExceptionException type for exceptions during JSON writing, such as trying to output content in wrong context (non-matching end-array or end-object, for example).classJsonParseExceptionException type for parsing problems, used when non-well-formed content (content that does not conform to JSON syntax as per specification) is encountered.Methods in com.fasterxml.jackson.core that throw JsonProcessingException Modifier and Type Method Description abstract <T extends TreeNode>
TTreeCodec. readTree(JsonParser p)abstract <T> TObjectCodec. treeToValue(TreeNode n, java.lang.Class<T> valueType)Convenience method for converting given JSON tree into instance of specified value type.abstract voidTreeCodec. writeTree(JsonGenerator g, TreeNode tree) -
Uses of JsonProcessingException in com.fasterxml.jackson.core.base
Methods in com.fasterxml.jackson.core.base that throw JsonProcessingException Modifier and Type Method Description protected charParserMinimalBase. _handleUnrecognizedCharacterEscape(char ch) -
Uses of JsonProcessingException in com.fasterxml.jackson.core.filter
Methods in com.fasterxml.jackson.core.filter that throw JsonProcessingException Modifier and Type Method Description TokenFilterTokenFilterContext. setFieldName(java.lang.String name) -
Uses of JsonProcessingException in com.fasterxml.jackson.core.io
Subclasses of JsonProcessingException in com.fasterxml.jackson.core.io Modifier and Type Class Description classJsonEOFExceptionSpecializedJsonParseExceptionthat is thrown when end-of-input is reached unexpectedly, either within token being decoded, or during skipping of intervening white-space that is not between root-level tokens (that is, is within JSON Object or JSON Array construct). -
Uses of JsonProcessingException in com.fasterxml.jackson.core.json
Methods in com.fasterxml.jackson.core.json that throw JsonProcessingException Modifier and Type Method Description voidJsonReadContext. setCurrentName(java.lang.String name)intJsonWriteContext. writeFieldName(java.lang.String name)Method that writer is to call before it writes a field name.
-