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).
JSON-specific parser and generator implementation classes that
Jackson defines and uses.
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.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 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 JsonTokenParserMinimalBase._nullSafeUpdateToken(JsonToken token) protected final JsonTokenParserMinimalBase._updateToken(JsonToken token) -
Uses of StreamConstraintsException in com.fasterxml.jackson.core.json
Methods in com.fasterxml.jackson.core.json that throw StreamConstraintsExceptionModifier and TypeMethodDescriptionprivate final StringUTF8DataInputJsonParser.addName(int[] quads, int qlen, int lastQuadBytes) This is the main workhorse method used when we take a symbol table miss.private final StringUTF8StreamJsonParser.addName(int[] quads, int qlen, int lastQuadBytes) private final StringUTF8DataInputJsonParser.findName(int[] quads, int qlen, int lastQuad, int lastQuadBytes) private final StringUTF8DataInputJsonParser.findName(int q1, int lastQuadBytes) private final StringUTF8DataInputJsonParser.findName(int q1, int q2, int lastQuadBytes) private final StringUTF8DataInputJsonParser.findName(int q1, int q2, int q3, int lastQuadBytes) private final StringUTF8StreamJsonParser.findName(int[] quads, int qlen, int lastQuad, int lastQuadBytes) private final StringUTF8StreamJsonParser.findName(int q1, int lastQuadBytes) private final StringUTF8StreamJsonParser.findName(int q1, int q2, int lastQuadBytes) private final StringUTF8StreamJsonParser.findName(int q1, int q2, int q3, int lastQuadBytes) -
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 TypeMethodDescriptionprivate intByteQuadsCanonicalizer._findOffsetForAdd(int hash) Method called to find the location within hash table to add a new symbol in.protected voidByteQuadsCanonicalizer._reportTooManyCollisions()protected voidCharsToNameCanonicalizer._reportTooManyCollisions(int maxLen) private intByteQuadsCanonicalizer._resizeAndFindOffsetForAdd(int hash) private voidByteQuadsCanonicalizer.rehash() -
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.