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 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.exc Package for some ofJsonProcessingException
subtypes 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 JsonLocation
JsonProcessingException. _location
static JsonLocation
JsonLocation. NA
Shared 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 JsonLocation
JsonParser. getCurrentLocation()
Method that returns location of the last processed character; usually for error reporting purposes.JsonLocation
JsonProcessingException. getLocation()
JsonLocation
JsonStreamContext. getStartLocation(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 JsonLocation
JsonParser. 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, String msg, JsonLocation loc)
JsonParseException(JsonParser p, String msg, JsonLocation loc, Throwable root)
JsonParseException(String msg, JsonLocation loc)
Deprecated.JsonParseException(String msg, JsonLocation loc, Throwable root)
Deprecated.JsonProcessingException(String msg, JsonLocation loc)
JsonProcessingException(String msg, JsonLocation loc, 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 JsonLocation
ParserBase. getCurrentLocation()
Method that returns location of the last processed character; usually for error reporting purposesJsonLocation
ParserBase. 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, String msg, JsonLocation loc)
StreamReadException(String msg, JsonLocation loc, 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 JsonLocation
FilteringParserDelegate. getCurrentLocation()
JsonLocation
FilteringParserDelegate. 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 JsonLocation
DupDetector. findLocation()
JsonLocation
ReaderBasedJsonParser. getCurrentLocation()
JsonLocation
UTF8DataInputJsonParser. getCurrentLocation()
JsonLocation
UTF8StreamJsonParser. getCurrentLocation()
JsonLocation
JsonReadContext. getStartLocation(Object srcRef)
JsonLocation
ReaderBasedJsonParser. getTokenLocation()
JsonLocation
UTF8DataInputJsonParser. getTokenLocation()
JsonLocation
UTF8StreamJsonParser. 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 JsonLocation
NonBlockingJsonParserBase. getCurrentLocation()
JsonLocation
NonBlockingJsonParserBase. 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 JsonLocation
JsonParserDelegate. getCurrentLocation()
JsonLocation
JsonParserDelegate. getTokenLocation()
-