Uses of Class
com.fasterxml.jackson.core.JsonLocation
Packages that use JsonLocation
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).
Package for some of
JsonProcessingException
subtypes contained by streaming API.JSON-specific parser and generator implementation classes that
Jackson defines and uses.
Non-blocking ("async") JSON parser implementation.
Utility classes used by Jackson Core functionality.
-
Uses of JsonLocation in com.fasterxml.jackson.core
Fields in com.fasterxml.jackson.core declared as JsonLocationModifier and TypeFieldDescriptionprotected JsonLocation
JsonProcessingException._location
static final 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 JsonLocationModifier and TypeMethodDescriptionJsonParser.currentLocation()
Method that returns location of the last processed input unit (character or byte) from the input; usually for error reporting purposes.JsonParser.currentTokenLocation()
Method that return the starting location of the current (most recently returned) token; that is, the position of the first input unit (character or byte) from input that starts the current token.abstract JsonLocation
JsonParser.getCurrentLocation()
Deprecated.abstract JsonLocation
JacksonException.getLocation()
Accessor for location information related to position within input or output (depending on operation), if available; if not available may returnnull
.JsonProcessingException.getLocation()
JsonStreamContext.getStartLocation
(Object srcRef) Deprecated.Since 2.13 useJsonStreamContext.startLocation(com.fasterxml.jackson.core.io.ContentReference)
insteadabstract JsonLocation
JsonParser.getTokenLocation()
Deprecated.Since 2.17 useJsonParser.currentTokenLocation()
insteadJsonStreamContext.startLocation
(ContentReference 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.Methods in com.fasterxml.jackson.core with parameters of type JsonLocationModifier and TypeMethodDescriptionprotected JsonParseException
JsonParser._constructReadException
(String msg, JsonLocation loc) Helper method for constructingJsonParseException
based on current state of the parser, except for specifiedJsonLocation
for problem location (which may not be the exact current location)Constructors in com.fasterxml.jackson.core with parameters of type JsonLocationModifierConstructorDescriptionJsonParseException
(JsonParser p, String msg, JsonLocation loc) JsonParseException
(JsonParser p, String msg, JsonLocation loc, Throwable rootCause) JsonParseException
(String msg, JsonLocation loc) Deprecated.JsonParseException
(String msg, JsonLocation loc, Throwable rootCause) Deprecated.protected
JsonProcessingException
(String msg, JsonLocation loc) protected
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 JsonLocationModifier and TypeMethodDescriptionprotected JsonLocation
ParserMinimalBase._currentLocationMinusOne()
Factory method used to provide location for cases where we must read and consume a single "wrong" character (to possibly allow error recovery), but need to report accurate location for that character: if so, the current location is past location we want, and location we want will be "one location earlier".ParserBase.getCurrentLocation()
Deprecated.ParserBase.getTokenLocation()
Deprecated. -
Uses of JsonLocation in com.fasterxml.jackson.core.exc
Methods in com.fasterxml.jackson.core.exc that return JsonLocationModifier and TypeMethodDescriptionprotected static JsonLocation
StreamReadException._currentLocation
(JsonParser p) Constructors in com.fasterxml.jackson.core.exc with parameters of type JsonLocationModifierConstructorDescriptionStreamConstraintsException
(String msg, JsonLocation loc) protected
StreamReadException
(JsonParser p, String msg, JsonLocation loc) protected
StreamReadException
(JsonParser p, String msg, JsonLocation loc, Throwable rootCause) protected
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 JsonLocationModifier and TypeMethodDescriptionFilteringParserDelegate.currentLocation()
FilteringParserDelegate.currentTokenLocation()
FilteringParserDelegate.getCurrentLocation()
Deprecated.FilteringParserDelegate.getTokenLocation()
Deprecated. -
Uses of JsonLocation in com.fasterxml.jackson.core.json
Methods in com.fasterxml.jackson.core.json that return JsonLocationModifier and TypeMethodDescriptionprotected abstract JsonLocation
JsonParserBase._currentLocationMinusOne()
protected JsonLocation
ReaderBasedJsonParser._currentLocationMinusOne()
protected JsonLocation
UTF8DataInputJsonParser._currentLocationMinusOne()
protected JsonLocation
UTF8StreamJsonParser._currentLocationMinusOne()
abstract JsonLocation
JsonParserBase.currentLocation()
ReaderBasedJsonParser.currentLocation()
UTF8DataInputJsonParser.currentLocation()
UTF8StreamJsonParser.currentLocation()
abstract JsonLocation
JsonParserBase.currentTokenLocation()
ReaderBasedJsonParser.currentTokenLocation()
UTF8DataInputJsonParser.currentTokenLocation()
UTF8StreamJsonParser.currentTokenLocation()
DupDetector.findLocation()
final JsonLocation
JsonParserBase.getCurrentLocation()
Deprecated.JsonReadContext.getStartLocation
(Object rawSrc) Deprecated.final JsonLocation
JsonParserBase.getTokenLocation()
Deprecated.JsonReadContext.startLocation
(ContentReference srcRef) -
Uses of JsonLocation in com.fasterxml.jackson.core.json.async
Methods in com.fasterxml.jackson.core.json.async that return JsonLocationModifier and TypeMethodDescriptionprotected JsonLocation
NonBlockingJsonParserBase._currentLocationMinusOne()
NonBlockingJsonParserBase.currentLocation()
NonBlockingJsonParserBase.currentTokenLocation()
-
Uses of JsonLocation in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that return JsonLocationModifier and TypeMethodDescriptionJsonParserDelegate.currentLocation()
JsonParserDelegate.currentTokenLocation()
JsonParserDelegate.getCurrentLocation()
Deprecated.JsonParserDelegate.getTokenLocation()
Deprecated.
JsonParser.currentLocation()
instead