JSON
Version 1.0

Uses of Class
org.codehaus.jackson.JsonParser

Packages that use JsonParser
org.codehaus.jackson   
org.codehaus.jackson.impl   
org.codehaus.jackson.map   
org.codehaus.jackson.map.impl   
 

Uses of JsonParser in org.codehaus.jackson
 

Methods in org.codehaus.jackson that return JsonParser
 JsonParser JsonFactory.createJsonParser(File f)
           
 JsonParser JsonFactory.createJsonParser(InputStream in)
           Note: no encoding argument is taken since it can always be auto-detected as suggested by Json RFC.
 JsonParser JsonFactory.createJsonParser(Reader r)
           
 JsonParser JsonFactory.createJsonParser(URL url)
           
 

Uses of JsonParser in org.codehaus.jackson.impl
 

Subclasses of JsonParser in org.codehaus.jackson.impl
 class ReaderBasedNumericParser
          Intermediate class that implements handling of numeric parsing.
 class ReaderBasedParser
          This is a concrete implementation of JsonParser, which is based on a Reader to handle low-level character conversion tasks.
 class ReaderBasedParserBase
          This is a simple low-level input reader base class, used by JSON parser.
 

Uses of JsonParser in org.codehaus.jackson.map
 

Methods in org.codehaus.jackson.map that return JsonParser
 JsonParser JavaTypeMapper.createParserFor(Object data)
          Method that will take in a Java object that could have been created by mappers write methods, and construct a JsonParser that exposes contents as JSON tokens
 

Methods in org.codehaus.jackson.map with parameters of type JsonParser
 Object JavaTypeMapper.read(JsonParser jp)
          Method that will use the current event of the underlying parser (and if there's no event yet, tries to advance to an event) to construct a value, and advance the parser to point to the next event, if any.
 JsonNode JsonTypeMapper.read(JsonParser jp)
          Method that will use the current event of the underlying parser (and if there's no event yet, tries to advance to an event) to construct a node, and advance the parser to point to the next event, if any.
protected  Object JavaTypeMapper.readAndMap(JsonParser jp, JsonToken currToken)
           
protected  void BaseMapper.reportProblem(JsonParser jp, String msg)
           
 

Uses of JsonParser in org.codehaus.jackson.map.impl
 

Methods in org.codehaus.jackson.map.impl with parameters of type JsonParser
protected  JsonNode JsonTypeMapperBase.readAndMap(JsonParser jp, JsonToken currToken)
           
 


JSON
Version 1.0

Apache License, Version 2.0