Uses of Class
tools.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 (Object property names)
Utility classes used by Jackson Core functionality.
-
Uses of StreamConstraintsException in tools.jackson.core
Methods in tools.jackson.core that return StreamConstraintsExceptionModifier and TypeMethodDescriptionprotected StreamConstraintsExceptionStreamReadConstraints._constructException(String msgTemplate, Object... args) protected StreamConstraintsExceptionStreamWriteConstraints._constructException(String msgTemplate, Object... args) Methods in tools.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.voidStreamReadConstraints.validateStringLengthLong(long length) voidStreamReadConstraints.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, aStreamConstraintsExceptionis thrown. -
Uses of StreamConstraintsException in tools.jackson.core.base
Methods in tools.jackson.core.base that throw StreamConstraintsExceptionModifier and TypeMethodDescriptionprotected int[]ParserBase._growNameDecodeBuffer(int[] arr, int more) protected final JsonTokenParserMinimalBase._nullSafeUpdateToken(JsonToken token) protected final JsonTokenParserMinimalBase._updateToken(JsonToken token) -
Uses of StreamConstraintsException in tools.jackson.core.json.async
Methods in tools.jackson.core.json.async that throw StreamConstraintsExceptionModifier and TypeMethodDescriptionprivate voidNonBlockingUtf8JsonParserBase._setExpLength(int len) private voidNonBlockingUtf8JsonParserBase._setFractLength(int len) private voidNonBlockingUtf8JsonParserBase._setIntLength(int len) -
Uses of StreamConstraintsException in tools.jackson.core.sym
Methods in tools.jackson.core.sym that throw StreamConstraintsExceptionModifier and TypeMethodDescriptionprivate intByteQuadsCanonicalizer._findOffsetForAdd(int hash) Method called to find the location within hash table to add a new symbol in.protected voidByteQuadsCanonicalizer._reportTooManyCollisions()private intByteQuadsCanonicalizer._resizeAndFindOffsetForAdd(int hash) private voidByteQuadsCanonicalizer.rehash() -
Uses of StreamConstraintsException in tools.jackson.core.util
Methods in tools.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, aJacksonExceptionis thrown.