Uses of Class
org.codehaus.jackson.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
(JsonParser)
instances.Parser and generator implementation classes that Jackson
defines and uses.
Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
ObjectMapper class, as well
as convenience methods included in
JsonParserContains concrete
JsonNode implementations
Jackson uses for the Tree model.Package that contains experimental implementation of
"Binary-Encoded JSON-Like" data format handlers (parser,
generator, factory produce both, supporting constants).
Utility classes used by Jackson Core functionality.
-
Uses of JsonLocation in org.codehaus.jackson
Fields in org.codehaus.jackson declared as JsonLocationModifier and TypeFieldDescriptionprotected JsonLocationJsonProcessingException.mLocationstatic final JsonLocationJsonLocation.NAShared immutable "N/A location" that can be returned to indicate that no location information is availableMethods in org.codehaus.jackson that return JsonLocationModifier and TypeMethodDescriptionabstract JsonLocationJsonParser.getCurrentLocation()Method that returns location of the last processed character; usually for error reporting purposes.JsonProcessingException.getLocation()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 org.codehaus.jackson with parameters of type JsonLocationModifierConstructorDescriptionJsonParseException(String msg, JsonLocation loc) JsonParseException(String msg, JsonLocation loc, Throwable root) protectedJsonProcessingException(String msg, JsonLocation loc) protectedJsonProcessingException(String msg, JsonLocation loc, Throwable rootCause) -
Uses of JsonLocation in org.codehaus.jackson.impl
Methods in org.codehaus.jackson.impl that return JsonLocationModifier and TypeMethodDescriptionJsonParserBase.getCurrentLocation()Method that returns location of the last processed character; usually for error reporting purposesfinal JsonLocationJsonReadContext.getStartLocation(Object srcRef) JsonParserBase.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 org.codehaus.jackson.map
Constructors in org.codehaus.jackson.map with parameters of type JsonLocationModifierConstructorDescriptionJsonMappingException(String msg, JsonLocation loc) JsonMappingException(String msg, JsonLocation loc, Throwable rootCause) -
Uses of JsonLocation in org.codehaus.jackson.map.exc
Constructors in org.codehaus.jackson.map.exc with parameters of type JsonLocationModifierConstructorDescriptionUnrecognizedPropertyException(String msg, JsonLocation loc, Class<?> referringClass, String propName) -
Uses of JsonLocation in org.codehaus.jackson.node
Methods in org.codehaus.jackson.node that return JsonLocationModifier and TypeMethodDescriptionTreeTraversingParser.getCurrentLocation()TreeTraversingParser.getTokenLocation() -
Uses of JsonLocation in org.codehaus.jackson.smile
Methods in org.codehaus.jackson.smile that return JsonLocationModifier and TypeMethodDescriptionSmileParser.getCurrentLocation()Overridden since we do not really have character-based locations, but we do have byte offset to specify.SmileParser.getTokenLocation()Overridden since we do not really have character-based locations, but we do have byte offset to specify. -
Uses of JsonLocation in org.codehaus.jackson.util
Fields in org.codehaus.jackson.util declared as JsonLocationMethods in org.codehaus.jackson.util that return JsonLocationModifier and TypeMethodDescriptionJsonParserDelegate.getCurrentLocation()TokenBuffer.Parser.getCurrentLocation()JsonParserDelegate.getTokenLocation()TokenBuffer.Parser.getTokenLocation()Methods in org.codehaus.jackson.util with parameters of type JsonLocation