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 importantlyJsonFactory
used 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 StreamConstraintsException
StreamReadConstraints. _constructException(java.lang.String msgTemplate, java.lang.Object... args)
protected StreamConstraintsException
StreamWriteConstraints. _constructException(java.lang.String msgTemplate, java.lang.Object... args)
Methods in com.fasterxml.jackson.core that throw StreamConstraintsException Modifier and Type Method Description protected StreamConstraintsException
StreamReadConstraints. _constructException(java.lang.String msgTemplate, java.lang.Object... args)
protected StreamConstraintsException
StreamWriteConstraints. _constructException(java.lang.String msgTemplate, java.lang.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. -
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.String
NonBlockingJsonParserBase. _addName(int[] quads, int qlen, int lastQuadBytes)
protected java.lang.String
NonBlockingJsonParserBase. _findName(int q1, int lastQuadBytes)
protected java.lang.String
NonBlockingJsonParserBase. _findName(int q1, int q2, int lastQuadBytes)
protected java.lang.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 StreamConstraintsException Modifier and Type Method Description protected void
ByteQuadsCanonicalizer. _reportTooManyCollisions()
protected void
CharsToNameCanonicalizer. _reportTooManyCollisions(int maxLen)
java.lang.String
ByteQuadsCanonicalizer. addName(java.lang.String name, int q1)
java.lang.String
ByteQuadsCanonicalizer. addName(java.lang.String name, int[] q, int qlen)
java.lang.String
ByteQuadsCanonicalizer. addName(java.lang.String name, int q1, int q2)
java.lang.String
ByteQuadsCanonicalizer. 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 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.
-