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.Base classes used by concrete Parser and Generator implementations;
contain functionality that is not specific to JSON or input
abstraction (byte vs char).
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 return StreamConstraintsExceptionModifier and TypeMethodDescriptionprotected StreamConstraintsException
StreamReadConstraints._constructException
(String msgTemplate, Object... args) protected StreamConstraintsException
StreamWriteConstraints._constructException
(String msgTemplate, Object... args) Methods in com.fasterxml.jackson.core that throw StreamConstraintsExceptionModifier and TypeMethodDescriptionprotected StreamConstraintsException
StreamReadConstraints._constructException
(String msgTemplate, Object... args) protected StreamConstraintsException
StreamWriteConstraints._constructException
(String msgTemplate, Object... args) void
StreamReadConstraints.validateBigIntegerScale
(int scale) Convenience method that can be used to verify that a conversion toBigInteger
StreamConstraintsException
is thrown.void
StreamReadConstraints.validateDocumentLength
(long len) Convenience method that can be used to verify that the document length does not exceed the maximum specified by this constraints object (if any): if it does, aStreamConstraintsException
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.validateNameLength
(int length) Convenience method that can be used to verify that a name 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
StreamWriteConstraints.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.void
StreamReadConstraints.validateTokenCount
(long count) Convenience method that can be used to verify that the token count does not exceed the maximum specified by this constraints object (if any): if it does, aStreamConstraintsException
is thrown. -
Uses of StreamConstraintsException in com.fasterxml.jackson.core.base
Methods in com.fasterxml.jackson.core.base that throw StreamConstraintsExceptionModifier and TypeMethodDescriptionprotected int[]
ParserBase._growNameDecodeBuffer
(int[] arr, int more) protected final JsonToken
ParserMinimalBase._nullSafeUpdateToken
(JsonToken token) protected final JsonToken
ParserMinimalBase._updateToken
(JsonToken token) -
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.