Uses of Class
org.codehaus.jackson.JsonToken

Packages that use JsonToken
org.codehaus.jackson Main public API classes of the core streaming JSON processor: most importantly JsonFactory used for constructing Json parser (JsonParser) and generator (JsonParser) instances. 
org.codehaus.jackson.impl Parser and generator implementation classes that Jackson defines and uses. 
org.codehaus.jackson.map 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 JsonParser 
org.codehaus.jackson.node Contains concrete JsonNode implementations Jackson uses for the Tree model. 
org.codehaus.jackson.util Utility classes used by Jackson Core functionality. 
 

Uses of JsonToken in org.codehaus.jackson
 

Fields in org.codehaus.jackson declared as JsonToken
protected  JsonToken JsonParser._currToken
          Last token retrieved via JsonParser.nextToken(), if any.
protected  JsonToken JsonParser._lastClearedToken
          Last cleared token, if any: that is, value that was in effect when JsonParser.clearCurrentToken() was called.
 

Methods in org.codehaus.jackson that return JsonToken
abstract  JsonToken JsonNode.asToken()
          Method that can be used for efficient type detection when using stream abstraction for traversing nodes.
 JsonToken JsonParser.getCurrentToken()
          Accessor to find which token parser currently points to, if any; null will be returned if none.
 JsonToken JsonParser.getLastClearedToken()
          Method that can be called to get the last token that was cleared using JsonParser.clearCurrentToken().
abstract  JsonToken JsonParser.nextToken()
          Main iteration method, which will advance stream enough to determine type of the next token, if any.
 JsonToken JsonParser.nextValue()
          Iteration method that will advance stream enough to determine type of the next token that is a value type (including Json Array and Object start/end markers).
static JsonToken JsonToken.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JsonToken[] JsonToken.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of JsonToken in org.codehaus.jackson.impl
 

Fields in org.codehaus.jackson.impl declared as JsonToken
protected  JsonToken JsonParserBase._nextToken
          Secondary token related to the current token: used when the current token is FIELD_NAME but the actual value token is also known.
 

Methods in org.codehaus.jackson.impl that return JsonToken
protected  JsonToken Utf8StreamParser._handleUnexpectedValue(int c)
          Method for handling cases where first non-space character of an expected value token is not legal for standard JSON content.
protected  JsonToken ReaderBasedParser._handleUnexpectedValue(int i)
          Method for handling cases where first non-space character of an expected value token is not legal for standard JSON content.
abstract  JsonToken JsonParserBase.nextToken()
           
 JsonToken Utf8StreamParser.nextToken()
           
 JsonToken ReaderBasedParser.nextToken()
           
protected  JsonToken ReaderBasedNumericParser.parseNumberText(int ch)
          Initial parsing method for number values.
protected  JsonToken Utf8NumericParser.parseNumberText(int c)
          Initial parsing method for number values.
protected abstract  JsonToken JsonNumericParserBase.parseNumberText(int ch)
           
protected  JsonToken JsonNumericParserBase.reset(boolean negative, int intLen, int fractLen, int expLen)
           
 

Methods in org.codehaus.jackson.impl with parameters of type JsonToken
protected  void Utf8StreamParser._matchToken(JsonToken token)
           
protected  void ReaderBasedParser._matchToken(JsonToken token)
          Method called to much one of literal tokens we may expect
 

Uses of JsonToken in org.codehaus.jackson.map
 

Methods in org.codehaus.jackson.map that return JsonToken
protected  JsonToken ObjectMapper._initForReading(JsonParser jp)
          Method called to ensure that given parser is ready for reading content for data binding.
 

Uses of JsonToken in org.codehaus.jackson.node
 

Fields in org.codehaus.jackson.node declared as JsonToken
protected  JsonToken TreeTraversingParser._nextToken
          Sometimes parser needs to buffer a single look-ahead token; if so, it'll be stored here.
 

Methods in org.codehaus.jackson.node that return JsonToken
 JsonToken IntNode.asToken()
           
 JsonToken BooleanNode.asToken()
           
 JsonToken TextNode.asToken()
           
 JsonToken BigIntegerNode.asToken()
           
 JsonToken ObjectNode.asToken()
           
abstract  JsonToken BaseJsonNode.asToken()
          Method that can be used for efficient type detection when using stream abstraction for traversing nodes.
abstract  JsonToken ContainerNode.asToken()
           
 JsonToken DecimalNode.asToken()
           
 JsonToken MissingNode.asToken()
           
 JsonToken ArrayNode.asToken()
           
 JsonToken BinaryNode.asToken()
           
 JsonToken NullNode.asToken()
           
 JsonToken LongNode.asToken()
           
abstract  JsonToken ValueNode.asToken()
           
 JsonToken DoubleNode.asToken()
           
 JsonToken POJONode.asToken()
           
 JsonToken TreeTraversingParser.nextToken()
           
 

Uses of JsonToken in org.codehaus.jackson.util
 

Methods in org.codehaus.jackson.util that return JsonToken
 JsonToken JsonParserDelegate.getCurrentToken()
           
 JsonToken JsonParserDelegate.getLastClearedToken()
           
 JsonToken JsonParserDelegate.nextToken()