Uses of Class
com.fasterxml.jackson.core.JsonLocation

Packages that use JsonLocation
com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantly JsonFactory used for constructing JSON parser (JsonParser) and generator (JsonParser) 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.json JSON-specific parser and generator implementation classes that Jackson defines and uses. 
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
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
abstract  JsonLocation JsonParser.getCurrentLocation()
          Method that returns location of the last processed character; usually for error reporting purposes.
 JsonLocation JsonProcessingException.getLocation()
           
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
JsonParseException(String msg, JsonLocation loc)
           
JsonParseException(String msg, JsonLocation loc, Throwable root)
           
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
 JsonLocation ParserBase.getCurrentLocation()
          Method that returns location of the last processed character; usually for error reporting purposes
 JsonLocation 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.json
 

Methods in com.fasterxml.jackson.core.json that return JsonLocation
 JsonLocation JsonReadContext.getStartLocation(Object srcRef)
           
 

Uses of JsonLocation in com.fasterxml.jackson.core.util
 

Methods in com.fasterxml.jackson.core.util that return JsonLocation
 JsonLocation JsonParserDelegate.getCurrentLocation()
           
 JsonLocation JsonParserDelegate.getTokenLocation()
           
 



Copyright © 2012 fasterxml.com. All Rights Reserved.