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 StreamConstraintsExceptionStreamReadConstraints._constructException(String msgTemplate, Object... args) protected StreamConstraintsExceptionStreamWriteConstraints._constructException(String msgTemplate, Object... args) Methods in com.fasterxml.jackson.core that throw StreamConstraintsExceptionModifier and TypeMethodDescriptionprotected StreamConstraintsExceptionStreamReadConstraints._constructException(String msgTemplate, Object... args) protected StreamConstraintsExceptionStreamWriteConstraints._constructException(String msgTemplate, Object... args) voidStreamReadConstraints.validateBigIntegerScale(int scale) Convenience method that can be used to verify that a conversion toBigIntegerStreamConstraintsExceptionis thrown.voidStreamReadConstraints.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, aStreamConstraintsExceptionis thrown.voidStreamReadConstraints.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, aStreamConstraintsExceptionis thrown.voidStreamReadConstraints.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, aStreamConstraintsExceptionis thrown.voidStreamReadConstraints.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, aStreamConstraintsExceptionis thrown.voidStreamReadConstraints.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, aStreamConstraintsExceptionis thrown.voidStreamWriteConstraints.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, aStreamConstraintsExceptionis thrown.voidStreamReadConstraints.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, aStreamConstraintsExceptionis 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) -
Uses of StreamConstraintsException in com.fasterxml.jackson.core.json.async
Methods in com.fasterxml.jackson.core.json.async that throw StreamConstraintsExceptionModifier and TypeMethodDescriptionprotected final StringNonBlockingJsonParserBase._addName(int[] quads, int qlen, int lastQuadBytes) protected final StringNonBlockingJsonParserBase._findName(int q1, int lastQuadBytes) protected final StringNonBlockingJsonParserBase._findName(int q1, int q2, int lastQuadBytes) protected final StringNonBlockingJsonParserBase._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 voidByteQuadsCanonicalizer._reportTooManyCollisions()protected voidCharsToNameCanonicalizer._reportTooManyCollisions(int maxLen) -
Uses of StreamConstraintsException in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that throw StreamConstraintsExceptionModifier and TypeMethodDescriptionprotected voidReadConstrainedTextBuffer.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, aJsonParseExceptionis thrown.