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.com.fasterxml.jackson.databind Basic data binding (mapping) functionality that allows for reading JSON content into Java Objects (POJOs) and JSON Trees (JsonNode), as well as writing Java Objects and trees as JSON.com.fasterxml.jackson.databind.deser Contains implementation classes of deserialization part of data binding.com.fasterxml.jackson.databind.deser.impl Contains those implementation classes of deserialization part of data binding that are not considered part of public or semi-public interfaces.com.fasterxml.jackson.databind.exc com.fasterxml.jackson.databind.node Contains concreteJsonNodeimplementations Jackson uses for the Tree model.com.fasterxml.jackson.databind.util Utility classes for Mapper package. -
-
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 JsonLocationJsonParser. currentLocation()Method that returns location of the last processed input unit (character or byte) from the input; usually for error reporting purposes.JsonLocationJsonParser. 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 JsonLocationJsonParser. getCurrentLocation()Alias forJsonParser.currentLocation(), to be deprecated in later Jackson 2.x versions (and removed from Jackson 3.0).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(Object srcRef)Deprecated.Since 2.13 useJsonStreamContext.startLocation(com.fasterxml.jackson.core.io.ContentReference)insteadabstract JsonLocationJsonParser. getTokenLocation()Alias forJsonParser.currentTokenLocation(), to be deprecated in later Jackson 2.x versions (and removed from Jackson 3.0).JsonLocationJsonStreamContext. 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 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 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 StreamConstraintsException(String msg, JsonLocation loc)StreamReadException(JsonParser p, String msg, JsonLocation loc)StreamReadException(JsonParser p, String msg, JsonLocation loc, Throwable rootCause)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 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(Object rawSrc)Deprecated.JsonLocationReaderBasedJsonParser. getTokenLocation()JsonLocationUTF8DataInputJsonParser. getTokenLocation()JsonLocationUTF8StreamJsonParser. getTokenLocation()JsonLocationJsonReadContext. startLocation(ContentReference srcRef) -
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. currentLocation()JsonLocationJsonParserDelegate. currentTokenLocation()JsonLocationJsonParserDelegate. getCurrentLocation()JsonLocationJsonParserDelegate. getTokenLocation() -
Uses of JsonLocation in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return JsonLocation Modifier and Type Method Description JsonLocationMappingIterator. getCurrentLocation()Convenience method, functionally equivalent to:iterator.getParser().getCurrentLocation()Constructors in com.fasterxml.jackson.databind with parameters of type JsonLocation Constructor Description DatabindException(String msg, JsonLocation loc)DatabindException(String msg, JsonLocation loc, Throwable rootCause)JsonMappingException(Closeable processor, String msg, JsonLocation loc)JsonMappingException(String msg, JsonLocation loc)Deprecated.Since 2.7 Use variant that takesJsonParserinsteadJsonMappingException(String msg, JsonLocation loc, Throwable rootCause)Deprecated.Since 2.7 Use variant that takesJsonParserinstead -
Uses of JsonLocation in com.fasterxml.jackson.databind.deser
Methods in com.fasterxml.jackson.databind.deser that return JsonLocation Modifier and Type Method Description JsonLocationUnresolvedId. getLocation()Methods in com.fasterxml.jackson.databind.deser with parameters of type JsonLocation Modifier and Type Method Description voidUnresolvedForwardReference. addUnresolvedId(Object id, Class<?> type, JsonLocation where)Constructors in com.fasterxml.jackson.databind.deser with parameters of type JsonLocation Constructor Description UnresolvedForwardReference(JsonParser p, String msg, JsonLocation loc, ReadableObjectId roid)UnresolvedId(Object id, Class<?> type, JsonLocation where) -
Uses of JsonLocation in com.fasterxml.jackson.databind.deser.impl
Methods in com.fasterxml.jackson.databind.deser.impl that return JsonLocation Modifier and Type Method Description JsonLocationReadableObjectId.Referring. getLocation() -
Uses of JsonLocation in com.fasterxml.jackson.databind.exc
-
Uses of JsonLocation in com.fasterxml.jackson.databind.node
Methods in com.fasterxml.jackson.databind.node that return JsonLocation Modifier and Type Method Description JsonLocationTreeTraversingParser. getCurrentLocation()JsonLocationTreeTraversingParser. getTokenLocation() -
Uses of JsonLocation in com.fasterxml.jackson.databind.util
Fields in com.fasterxml.jackson.databind.util declared as JsonLocation Modifier and Type Field Description protected JsonLocationTokenBuffer.Parser. _locationprotected JsonLocationTokenBufferReadContext. _startLocationMethods in com.fasterxml.jackson.databind.util that return JsonLocation Modifier and Type Method Description JsonLocationTokenBuffer.Parser. getCurrentLocation()JsonLocationTokenBuffer.Parser. getTokenLocation()Methods in com.fasterxml.jackson.databind.util with parameters of type JsonLocation Modifier and Type Method Description voidTokenBuffer.Parser. setLocation(JsonLocation l)Constructors in com.fasterxml.jackson.databind.util with parameters of type JsonLocation Constructor Description TokenBufferReadContext(JsonStreamContext base, JsonLocation startLoc)
-