Uses of Class
com.fasterxml.jackson.core.exc.StreamConstraintsException
Packages that use StreamConstraintsException
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.Non-blocking ("async") JSON parser implementation.
Internal implementation classes for efficient handling of
of symbols in JSON (field names in Objects)
Utility classes used by Jackson Core functionality.
-
Uses of StreamConstraintsException in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that throw StreamConstraintsExceptionModifier and TypeMethodDescriptionvoid
StreamReadConstraints.validateBigIntegerScale
(int scale) Convenience method that can be used to verify that a conversion toBigInteger
StreamConstraintsException
is thrown.void
StreamReadConstraints.validateFPLength
(int length) Convenience method that can be used to verify that a floating-point number of specified length does not exceed maximum specified by this constraints object: if it does, aStreamConstraintsException
is thrown.void
StreamReadConstraints.validateIntegerLength
(int length) Convenience method that can be used to verify that an integer number of specified length does not exceed maximum specific by this constraints object: if it does, aStreamConstraintsException
is thrown.void
StreamReadConstraints.validateNestingDepth
(int depth) Convenience method that can be used to verify that the nesting depth does not exceed the maximum specified by this constraints object: if it does, aStreamConstraintsException
is thrown.void
StreamReadConstraints.validateStringLength
(int length) Convenience method that can be used to verify that a String of specified length does not exceed maximum specific by this constraints object: if it does, aStreamConstraintsException
is thrown. -
Uses of StreamConstraintsException in com.fasterxml.jackson.core.json.async
Methods in com.fasterxml.jackson.core.json.async that throw StreamConstraintsExceptionModifier and TypeMethodDescriptionprotected final String
NonBlockingJsonParserBase._addName
(int[] quads, int qlen, int lastQuadBytes) protected final String
NonBlockingJsonParserBase._findName
(int q1, int lastQuadBytes) protected final String
NonBlockingJsonParserBase._findName
(int q1, int q2, int lastQuadBytes) protected final String
NonBlockingJsonParserBase._findName
(int q1, int q2, int q3, int lastQuadBytes) -
Uses of StreamConstraintsException in com.fasterxml.jackson.core.sym
Methods in com.fasterxml.jackson.core.sym that throw StreamConstraintsExceptionModifier and TypeMethodDescriptionprotected void
ByteQuadsCanonicalizer._reportTooManyCollisions()
protected void
CharsToNameCanonicalizer._reportTooManyCollisions
(int maxLen) -
Uses of StreamConstraintsException in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that throw StreamConstraintsExceptionModifier and TypeMethodDescriptionprotected void
ReadConstrainedTextBuffer.validateStringLength
(int length) Convenience method that can be used to verify that a String of specified length does not exceed maximum specific by this constraints object: if it does, aJsonParseException
is thrown.