Uses of Class
com.fasterxml.jackson.core.JsonLocation
-
Packages that use JsonLocation 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.exc Package for some ofJsonProcessingExceptionsubtypes contained by streaming API.com.fasterxml.jackson.core.filter com.fasterxml.jackson.core.json JSON-specific parser and generator implementation classes that Jackson defines and uses.com.fasterxml.jackson.core.json.async Non-blocking ("async") JSON parser implementation.com.fasterxml.jackson.core.util Utility classes used by Jackson Core functionality. -
-
Uses of JsonLocation in com.fasterxml.jackson.core
Fields in com.fasterxml.jackson.core declared as JsonLocation Modifier and Type Field Description protected JsonLocationJsonProcessingException. _locationstatic JsonLocationJsonLocation. NAShared immutable "N/A location" that can be returned to indicate that no location information is available.Methods in com.fasterxml.jackson.core that return JsonLocation Modifier and Type Method Description abstract JsonLocationJsonParser. getCurrentLocation()Method that returns location of the last processed character; usually for error reporting purposes.abstract JsonLocationJacksonException. getLocation()Accessor for location information related to position within input or output (depending on operation), if available; if not available may returnnull.JsonLocationJsonProcessingException. getLocation()JsonLocationJsonStreamContext. getStartLocation(java.lang.Object srcRef)Optional method that may be used to access starting location of this context: for example, in case of JSON `Object` context, offset at which `[` token was read or written.abstract JsonLocationJsonParser. getTokenLocation()Method that return the starting location of the current token; that is, position of the first character from input that starts the current token.Constructors in com.fasterxml.jackson.core with parameters of type JsonLocation Constructor Description JsonParseException(JsonParser p, java.lang.String msg, JsonLocation loc)JsonParseException(JsonParser p, java.lang.String msg, JsonLocation loc, java.lang.Throwable root)JsonParseException(java.lang.String msg, JsonLocation loc)Deprecated.JsonParseException(java.lang.String msg, JsonLocation loc, java.lang.Throwable root)Deprecated.JsonProcessingException(java.lang.String msg, JsonLocation loc)JsonProcessingException(java.lang.String msg, JsonLocation loc, java.lang.Throwable rootCause) -
Uses of JsonLocation in com.fasterxml.jackson.core.base
Methods in com.fasterxml.jackson.core.base that return JsonLocation Modifier and Type Method Description JsonLocationParserBase. getCurrentLocation()Method that returns location of the last processed character; usually for error reporting purposesJsonLocationParserBase. getTokenLocation()Method that return the starting location of the current token; that is, position of the first character from input that starts the current token. -
Uses of JsonLocation in com.fasterxml.jackson.core.exc
Constructors in com.fasterxml.jackson.core.exc with parameters of type JsonLocation Constructor Description StreamReadException(JsonParser p, java.lang.String msg, JsonLocation loc)StreamReadException(java.lang.String msg, JsonLocation loc, java.lang.Throwable rootCause) -
Uses of JsonLocation in com.fasterxml.jackson.core.filter
Methods in com.fasterxml.jackson.core.filter that return JsonLocation Modifier and Type Method Description JsonLocationFilteringParserDelegate. getCurrentLocation()JsonLocationFilteringParserDelegate. getTokenLocation() -
Uses of JsonLocation in com.fasterxml.jackson.core.json
Methods in com.fasterxml.jackson.core.json that return JsonLocation Modifier and Type Method Description JsonLocationDupDetector. findLocation()JsonLocationReaderBasedJsonParser. getCurrentLocation()JsonLocationUTF8DataInputJsonParser. getCurrentLocation()JsonLocationUTF8StreamJsonParser. getCurrentLocation()JsonLocationJsonReadContext. getStartLocation(java.lang.Object srcRef)JsonLocationReaderBasedJsonParser. getTokenLocation()JsonLocationUTF8DataInputJsonParser. getTokenLocation()JsonLocationUTF8StreamJsonParser. getTokenLocation() -
Uses of JsonLocation in com.fasterxml.jackson.core.json.async
Methods in com.fasterxml.jackson.core.json.async that return JsonLocation Modifier and Type Method Description JsonLocationNonBlockingJsonParserBase. getCurrentLocation()JsonLocationNonBlockingJsonParserBase. getTokenLocation() -
Uses of JsonLocation in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that return JsonLocation Modifier and Type Method Description JsonLocationJsonParserDelegate. getCurrentLocation()JsonLocationJsonParserDelegate. getTokenLocation()
-