Uses of Class
com.fasterxml.jackson.core.exc.StreamConstraintsException
-
Packages that use StreamConstraintsException Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonGenerator) instances.com.fasterxml.jackson.core.base Base classes used by concrete Parser and Generator implementations; contain functionality that is not specific to JSON or input abstraction (byte vs char).com.fasterxml.jackson.core.json.async Non-blocking ("async") JSON parser implementation.com.fasterxml.jackson.core.sym Internal implementation classes for efficient handling of of symbols in JSON (field names in Objects)com.fasterxml.jackson.core.util Utility classes used by Jackson Core functionality. -
-
Uses of StreamConstraintsException in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return StreamConstraintsException Modifier and Type Method Description protected StreamConstraintsExceptionStreamReadConstraints. _constructException(java.lang.String msgTemplate, java.lang.Object... args)protected StreamConstraintsExceptionStreamWriteConstraints. _constructException(java.lang.String msgTemplate, java.lang.Object... args)Methods in com.fasterxml.jackson.core that throw StreamConstraintsException Modifier and Type Method Description protected StreamConstraintsExceptionStreamReadConstraints. _constructException(java.lang.String msgTemplate, java.lang.Object... args)protected StreamConstraintsExceptionStreamWriteConstraints. _constructException(java.lang.String msgTemplate, java.lang.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 StreamConstraintsException Modifier and Type Method Description protected 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 StreamConstraintsException Modifier and Type Method Description protected java.lang.StringNonBlockingJsonParserBase. _addName(int[] quads, int qlen, int lastQuadBytes)protected java.lang.StringNonBlockingJsonParserBase. _findName(int q1, int lastQuadBytes)protected java.lang.StringNonBlockingJsonParserBase. _findName(int q1, int q2, int lastQuadBytes)protected java.lang.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 StreamConstraintsException Modifier and Type Method Description protected voidByteQuadsCanonicalizer. _reportTooManyCollisions()protected voidCharsToNameCanonicalizer. _reportTooManyCollisions(int maxLen)java.lang.StringByteQuadsCanonicalizer. addName(java.lang.String name, int q1)java.lang.StringByteQuadsCanonicalizer. addName(java.lang.String name, int[] q, int qlen)java.lang.StringByteQuadsCanonicalizer. addName(java.lang.String name, int q1, int q2)java.lang.StringByteQuadsCanonicalizer. addName(java.lang.String name, int q1, int q2, int q3) -
Uses of StreamConstraintsException in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that throw StreamConstraintsException Modifier and Type Method Description protected 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.
-