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()
Alias forJsonParser.currentLocation()
, to be deprecated in later Jackson 2.x versions (and removed from Jackson 3.0).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.abstract JsonLocation
JsonParser.getTokenLocation()
Alias forJsonParser.currentTokenLocation()
, to be deprecated in later Jackson 2.x versions (and removed from Jackson 3.0).JsonStreamContext.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.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 root) JsonParseException
(String msg, JsonLocation loc) Deprecated.JsonParseException
(String msg, JsonLocation loc, Throwable root) 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 TypeMethodDescriptionParserBase.getCurrentLocation()
Method that returns location of the last processed character; usually for error reporting purposesParserBase.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 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.getCurrentLocation()
FilteringParserDelegate.getTokenLocation()
-
Uses of JsonLocation in com.fasterxml.jackson.core.json
Methods in com.fasterxml.jackson.core.json that return JsonLocationModifier and TypeMethodDescriptionDupDetector.findLocation()
ReaderBasedJsonParser.getCurrentLocation()
UTF8DataInputJsonParser.getCurrentLocation()
UTF8StreamJsonParser.getCurrentLocation()
JsonReadContext.getStartLocation
(Object rawSrc) Deprecated.ReaderBasedJsonParser.getTokenLocation()
UTF8DataInputJsonParser.getTokenLocation()
UTF8StreamJsonParser.getTokenLocation()
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 TypeMethodDescriptionNonBlockingJsonParserBase.getCurrentLocation()
NonBlockingJsonParserBase.getTokenLocation()
-
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()
JsonParserDelegate.getTokenLocation()
JsonStreamContext.startLocation(com.fasterxml.jackson.core.io.ContentReference)
instead