com.fasterxml.jackson.core.filter
Class FilteringParserDelegate

java.lang.Object
  extended by com.fasterxml.jackson.core.JsonParser
      extended by com.fasterxml.jackson.core.util.JsonParserDelegate
          extended by com.fasterxml.jackson.core.filter.FilteringParserDelegate
All Implemented Interfaces:
Versioned, Closeable

public class FilteringParserDelegate
extends JsonParserDelegate

Specialized JsonParserDelegate that allows use of TokenFilter for outputting a subset of content that is visible to caller

Since:
2.6

Nested Class Summary
 
Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonParser
JsonParser.Feature, JsonParser.NumberType
 
Field Summary
protected  boolean _allowMultipleMatches
          Flag that determines whether filtering will continue after the first match is indicated or not: if `false`, output is based on just the first full match (returning TokenFilter.INCLUDE_ALL) and no more checks are made; if `true` then filtering will be applied as necessary until end of content.
protected  JsonToken _currToken
          Last token retrieved via nextToken(), if any.
protected  TokenFilterContext _exposedContext
          In cases where _headContext is "ahead" of context exposed to caller, this context points to what is currently exposed to caller.
protected  TokenFilterContext _headContext
          During traversal this is the actual "open" parse tree, which sometimes is the same as _exposedContext, and at other times is ahead of it.
protected  boolean _includeImmediateParent
          Deprecated. 
protected  boolean _includePath
          Flag that determines whether path leading up to included content should also be automatically included or not.
protected  TokenFilter _itemFilter
          State that applies to the item within container, used where applicable.
protected  JsonToken _lastClearedToken
          Last cleared token, if any: that is, value that was in effect when clearCurrentToken() was called.
protected  int _matchCount
          Number of tokens for which TokenFilter.INCLUDE_ALL has been returned.
protected  TokenFilter rootFilter
          Object consulted to determine whether to write parts of content generator is asked to write or not.
 
Fields inherited from class com.fasterxml.jackson.core.util.JsonParserDelegate
delegate
 
Fields inherited from class com.fasterxml.jackson.core.JsonParser
_features
 
Constructor Summary
FilteringParserDelegate(JsonParser p, TokenFilter f, boolean includePath, boolean allowMultipleMatches)
           
 
Method Summary
protected  JsonStreamContext _filterContext()
           
protected  JsonToken _nextToken2()
          Offlined handling for cases where there was no buffered token to return, and the token read next could not be returned as-is, at least not yet, but where we have not yet established that buffering is needed.
protected  JsonToken _nextTokenWithBuffering(TokenFilterContext buffRoot)
          Method called when a new potentially included context is found.
 void clearCurrentToken()
          Method called to "consume" the current token by effectively removing it so that JsonParser.hasCurrentToken() returns false, and JsonParser.getCurrentToken() null).
 BigInteger getBigIntegerValue()
          Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_INT and it can not be used as a Java long primitive type due to its magnitude.
 byte[] getBinaryValue(Base64Variant b64variant)
          Method that can be used to read (and consume -- results may not be accessible using other methods after the call) base64-encoded binary data included in the current textual JSON value.
 boolean getBooleanValue()
          Convenience accessor that can be called when the current token is JsonToken.VALUE_TRUE or JsonToken.VALUE_FALSE.
 byte getByteValue()
          Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_INT and it can be expressed as a value of Java byte primitive type.
 JsonLocation getCurrentLocation()
          Method that returns location of the last processed character; usually for error reporting purposes.
 String getCurrentName()
          Method that can be called to get the name associated with the current token: for JsonToken.FIELD_NAMEs it will be the same as what JsonParser.getText() returns; for field values it will be preceding field name; and for others (array values, root-level values) null.
 JsonToken getCurrentToken()
          Accessor to find which token parser currently points to, if any; null will be returned if none.
 int getCurrentTokenId()
          Method similar to JsonParser.getCurrentToken() but that returns an int instead of JsonToken (enum value).
 BigDecimal getDecimalValue()
          Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_FLOAT or JsonToken.VALUE_NUMBER_INT.
 double getDoubleValue()
          Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_FLOAT and it can be expressed as a Java double primitive type.
 Object getEmbeddedObject()
          Accessor that can be called if (and only if) the current token is JsonToken.VALUE_EMBEDDED_OBJECT.
 TokenFilter getFilter()
           
 float getFloatValue()
          Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_FLOAT and it can be expressed as a Java float primitive type.
 int getIntValue()
          Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_INT and it can be expressed as a value of Java int primitive type.
 JsonToken getLastClearedToken()
          Method that can be called to get the last token that was cleared using JsonParser.clearCurrentToken().
 long getLongValue()
          Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_INT and it can be expressed as a Java long primitive type.
 int getMatchCount()
          Accessor for finding number of matches, where specific token and sub-tree starting (if structured type) are passed.
 JsonParser.NumberType getNumberType()
          If current token is of type JsonToken.VALUE_NUMBER_INT or JsonToken.VALUE_NUMBER_FLOAT, returns one of JsonParser.NumberType constants; otherwise returns null.
 Number getNumberValue()
          Generic number value accessor method that will work for all kinds of numeric values.
 JsonStreamContext getParsingContext()
          Method that can be used to access current parsing context reader is in.
 short getShortValue()
          Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_INT and it can be expressed as a value of Java short primitive type.
 String getText()
          Method for accessing textual representation of the current token; if no current token (before first call to JsonParser.nextToken(), or after encountering end-of-input), returns null.
 char[] getTextCharacters()
          Method similar to JsonParser.getText(), but that will return underlying (unmodifiable) character array that contains textual value, instead of constructing a String object to contain this information.
 int getTextLength()
          Accessor used with JsonParser.getTextCharacters(), to know length of String stored in returned buffer.
 int getTextOffset()
          Accessor used with JsonParser.getTextCharacters(), to know offset of the first text content character within buffer.
 JsonLocation 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.
 boolean getValueAsBoolean()
          Method that will try to convert value of current token to a boolean.
 boolean getValueAsBoolean(boolean defaultValue)
          Method that will try to convert value of current token to a boolean.
 double getValueAsDouble()
          Method that will try to convert value of current token to a Java double.
 double getValueAsDouble(double defaultValue)
          Method that will try to convert value of current token to a Java double.
 int getValueAsInt()
          Method that will try to convert value of current token to a int.
 int getValueAsInt(int defaultValue)
          Method that will try to convert value of current token to a int.
 long getValueAsLong()
          Method that will try to convert value of current token to a long.
 long getValueAsLong(long defaultValue)
          Method that will try to convert value of current token to a long.
 String getValueAsString()
          Method that will try to convert value of current token to a String.
 String getValueAsString(String defaultValue)
          Method that will try to convert value of current token to a String.
 boolean hasCurrentToken()
          Method for checking whether parser currently points to a token (and data for that token is available).
 boolean hasTextCharacters()
          Method that can be used to determine whether calling of JsonParser.getTextCharacters() would be the most efficient way to access textual content for the event parser currently points to.
 boolean hasToken(JsonToken t)
          Method that is functionally equivalent to: return getCurrentTokenId() == id but may be more efficiently implemented.
 boolean hasTokenId(int id)
          Method that is functionally equivalent to: return getCurrentTokenId() == id but may be more efficiently implemented.
 boolean isExpectedStartArrayToken()
          Specialized accessor that can be used to verify that the current token indicates start array (usually meaning that current token is JsonToken.START_ARRAY) when start array is expected.
 boolean isExpectedStartObjectToken()
          Similar to JsonParser.isExpectedStartArrayToken(), but checks whether stream currently points to JsonToken.START_OBJECT.
 JsonToken nextToken()
          Main iteration method, which will advance stream enough to determine type of the next token, if any.
 JsonToken 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).
 void overrideCurrentName(String name)
          Method that can be used to change what is considered to be the current (field) name.
 int readBinaryValue(Base64Variant b64variant, OutputStream out)
          Similar to JsonParser.readBinaryValue(OutputStream) but allows explicitly specifying base64 variant to use.
 JsonParser skipChildren()
          Need to override, re-implement similar to how method defined in ParserMinimalBase, to keep state correct here.
 
Methods inherited from class com.fasterxml.jackson.core.util.JsonParserDelegate
canReadObjectId, canReadTypeId, canUseSchema, close, disable, enable, getCodec, getCurrentValue, getFeatureMask, getInputSource, getObjectId, getSchema, getTypeId, isClosed, isEnabled, overrideFormatFeatures, overrideStdFeatures, requiresCustomCodec, setCodec, setCurrentValue, setFeatureMask, setSchema, version
 
Methods inherited from class com.fasterxml.jackson.core.JsonParser
_codec, _constructError, _reportUnsupportedOperation, configure, getBinaryValue, getFormatFeatures, nextBooleanValue, nextFieldName, nextFieldName, nextIntValue, nextLongValue, nextTextValue, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

rootFilter

protected TokenFilter rootFilter
Object consulted to determine whether to write parts of content generator is asked to write or not.


_allowMultipleMatches

protected boolean _allowMultipleMatches
Flag that determines whether filtering will continue after the first match is indicated or not: if `false`, output is based on just the first full match (returning TokenFilter.INCLUDE_ALL) and no more checks are made; if `true` then filtering will be applied as necessary until end of content.


_includePath

protected boolean _includePath
Flag that determines whether path leading up to included content should also be automatically included or not. If `false`, no path inclusion is done and only explicitly included entries are output; if `true` then path from main level down to match is also included as necessary.


_includeImmediateParent

@Deprecated
protected boolean _includeImmediateParent
Deprecated. 

_currToken

protected JsonToken _currToken
Last token retrieved via nextToken(), if any. Null before the first call to nextToken(), as well as if token has been explicitly cleared


_lastClearedToken

protected JsonToken _lastClearedToken
Last cleared token, if any: that is, value that was in effect when clearCurrentToken() was called.


_headContext

protected TokenFilterContext _headContext
During traversal this is the actual "open" parse tree, which sometimes is the same as _exposedContext, and at other times is ahead of it. Note that this context is never null.


_exposedContext

protected TokenFilterContext _exposedContext
In cases where _headContext is "ahead" of context exposed to caller, this context points to what is currently exposed to caller. When the two are in sync, this context reference will be null.


_itemFilter

protected TokenFilter _itemFilter
State that applies to the item within container, used where applicable. Specifically used to pass inclusion state between property name and property, and also used for array elements.


_matchCount

protected int _matchCount
Number of tokens for which TokenFilter.INCLUDE_ALL has been returned.

Constructor Detail

FilteringParserDelegate

public FilteringParserDelegate(JsonParser p,
                               TokenFilter f,
                               boolean includePath,
                               boolean allowMultipleMatches)
Method Detail

getFilter

public TokenFilter getFilter()

getMatchCount

public int getMatchCount()
Accessor for finding number of matches, where specific token and sub-tree starting (if structured type) are passed.


getCurrentToken

public JsonToken getCurrentToken()
Description copied from class: JsonParser
Accessor to find which token parser currently points to, if any; null will be returned if none. If return value is non-null, data associated with the token is available via other accessor methods.

Overrides:
getCurrentToken in class JsonParserDelegate
Returns:
Type of the token this parser currently points to, if any: null before any tokens have been read, and after end-of-input has been encountered, as well as if the current token has been explicitly cleared.

getCurrentTokenId

public final int getCurrentTokenId()
Description copied from class: JsonParser
Method similar to JsonParser.getCurrentToken() but that returns an int instead of JsonToken (enum value).

Use of int directly is typically more efficient on switch statements, so this method may be useful when building low-overhead codecs. Note, however, that effect may not be big enough to matter: make sure to profile performance before deciding to use this method.

Overrides:
getCurrentTokenId in class JsonParserDelegate
Returns:
int matching one of constants from JsonTokenId.

hasCurrentToken

public boolean hasCurrentToken()
Description copied from class: JsonParser
Method for checking whether parser currently points to a token (and data for that token is available). Equivalent to check for parser.getCurrentToken() != null.

Overrides:
hasCurrentToken in class JsonParserDelegate
Returns:
True if the parser just returned a valid token via JsonParser.nextToken(); false otherwise (parser was just constructed, encountered end-of-input and returned null from JsonParser.nextToken(), or the token has been consumed)

hasTokenId

public boolean hasTokenId(int id)
Description copied from class: JsonParser
Method that is functionally equivalent to: return getCurrentTokenId() == id but may be more efficiently implemented.

Note that no traversal or conversion is performed; so in some cases calling method like JsonParser.isExpectedStartArrayToken() is necessary instead.

Overrides:
hasTokenId in class JsonParserDelegate

hasToken

public final boolean hasToken(JsonToken t)
Description copied from class: JsonParser
Method that is functionally equivalent to: return getCurrentTokenId() == id but may be more efficiently implemented.

Note that no traversal or conversion is performed; so in some cases calling method like JsonParser.isExpectedStartArrayToken() is necessary instead.

Overrides:
hasToken in class JsonParserDelegate

isExpectedStartArrayToken

public boolean isExpectedStartArrayToken()
Description copied from class: JsonParser
Specialized accessor that can be used to verify that the current token indicates start array (usually meaning that current token is JsonToken.START_ARRAY) when start array is expected. For some specialized parsers this can return true for other cases as well; this is usually done to emulate arrays in cases underlying format is ambiguous (XML, for example, has no format-level difference between Objects and Arrays; it just has elements).

Default implementation is equivalent to:

   getCurrentToken() == JsonToken.START_ARRAY
but may be overridden by custom parser implementations.

Overrides:
isExpectedStartArrayToken in class JsonParserDelegate
Returns:
True if the current token can be considered as a start-array marker (such JsonToken.START_ARRAY); false if not.

isExpectedStartObjectToken

public boolean isExpectedStartObjectToken()
Description copied from class: JsonParser
Similar to JsonParser.isExpectedStartArrayToken(), but checks whether stream currently points to JsonToken.START_OBJECT.

Overrides:
isExpectedStartObjectToken in class JsonParserDelegate

getCurrentLocation

public JsonLocation getCurrentLocation()
Description copied from class: JsonParser
Method that returns location of the last processed character; usually for error reporting purposes.

Overrides:
getCurrentLocation in class JsonParserDelegate

getParsingContext

public JsonStreamContext getParsingContext()
Description copied from class: JsonParser
Method that can be used to access current parsing context reader is in. There are 3 different types: root, array and object contexts, with slightly different available information. Contexts are hierarchically nested, and can be used for example for figuring out part of the input document that correspond to specific array or object (for highlighting purposes, or error reporting). Contexts can also be used for simple xpath-like matching of input, if so desired.

Overrides:
getParsingContext in class JsonParserDelegate

getCurrentName

public String getCurrentName()
                      throws IOException
Description copied from class: JsonParser
Method that can be called to get the name associated with the current token: for JsonToken.FIELD_NAMEs it will be the same as what JsonParser.getText() returns; for field values it will be preceding field name; and for others (array values, root-level values) null.

Overrides:
getCurrentName in class JsonParserDelegate
Throws:
IOException

clearCurrentToken

public void clearCurrentToken()
Description copied from class: JsonParser
Method called to "consume" the current token by effectively removing it so that JsonParser.hasCurrentToken() returns false, and JsonParser.getCurrentToken() null). Cleared token value can still be accessed by calling JsonParser.getLastClearedToken() (if absolutely needed), but usually isn't.

Method was added to be used by the optional data binder, since it has to be able to consume last token used for binding (so that it will not be used again).

Overrides:
clearCurrentToken in class JsonParserDelegate

getLastClearedToken

public JsonToken getLastClearedToken()
Description copied from class: JsonParser
Method that can be called to get the last token that was cleared using JsonParser.clearCurrentToken(). This is not necessarily the latest token read. Will return null if no tokens have been cleared, or if parser has been closed.

Overrides:
getLastClearedToken in class JsonParserDelegate

overrideCurrentName

public void overrideCurrentName(String name)
Description copied from class: JsonParser
Method that can be used to change what is considered to be the current (field) name. May be needed to support non-JSON data formats or unusual binding conventions; not needed for typical processing.

Note that use of this method should only be done as sort of last resort, as it is a work-around for regular operation.

Overrides:
overrideCurrentName in class JsonParserDelegate
Parameters:
name - Name to use as the current name; may be null.

nextToken

public JsonToken nextToken()
                    throws IOException
Description copied from class: JsonParser
Main iteration method, which will advance stream enough to determine type of the next token, if any. If none remaining (stream has no content other than possible white space before ending), null will be returned.

Overrides:
nextToken in class JsonParserDelegate
Returns:
Next token from the stream, if any found, or null to indicate end-of-input
Throws:
IOException

_nextToken2

protected final JsonToken _nextToken2()
                               throws IOException
Offlined handling for cases where there was no buffered token to return, and the token read next could not be returned as-is, at least not yet, but where we have not yet established that buffering is needed.

Throws:
IOException

_nextTokenWithBuffering

protected final JsonToken _nextTokenWithBuffering(TokenFilterContext buffRoot)
                                           throws IOException
Method called when a new potentially included context is found.

Throws:
IOException

nextValue

public JsonToken nextValue()
                    throws IOException
Description copied from class: JsonParser
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). Or put another way, nextToken() will be called once, and if JsonToken.FIELD_NAME is returned, another time to get the value for the field. Method is most useful for iterating over value entries of JSON objects; field name will still be available by calling JsonParser.getCurrentName() when parser points to the value.

Overrides:
nextValue in class JsonParserDelegate
Returns:
Next non-field-name token from the stream, if any found, or null to indicate end-of-input (or, for non-blocking parsers, JsonToken.NOT_AVAILABLE if no tokens were available yet)
Throws:
IOException

skipChildren

public JsonParser skipChildren()
                        throws IOException
Need to override, re-implement similar to how method defined in ParserMinimalBase, to keep state correct here.

Overrides:
skipChildren in class JsonParserDelegate
Throws:
IOException

getText

public String getText()
               throws IOException
Description copied from class: JsonParser
Method for accessing textual representation of the current token; if no current token (before first call to JsonParser.nextToken(), or after encountering end-of-input), returns null. Method can be called for any token type.

Overrides:
getText in class JsonParserDelegate
Throws:
IOException

hasTextCharacters

public boolean hasTextCharacters()
Description copied from class: JsonParser
Method that can be used to determine whether calling of JsonParser.getTextCharacters() would be the most efficient way to access textual content for the event parser currently points to.

Default implementation simply returns false since only actual implementation class has knowledge of its internal buffering state. Implementations are strongly encouraged to properly override this method, to allow efficient copying of content by other code.

Overrides:
hasTextCharacters in class JsonParserDelegate
Returns:
True if parser currently has character array that can be efficiently returned via JsonParser.getTextCharacters(); false means that it may or may not exist

getTextCharacters

public char[] getTextCharacters()
                         throws IOException
Description copied from class: JsonParser
Method similar to JsonParser.getText(), but that will return underlying (unmodifiable) character array that contains textual value, instead of constructing a String object to contain this information. Note, however, that:

Note that caller MUST NOT modify the returned character array in any way -- doing so may corrupt current parser state and render parser instance useless.

The only reason to call this method (over JsonParser.getText()) is to avoid construction of a String object (which will make a copy of contents).

Overrides:
getTextCharacters in class JsonParserDelegate
Throws:
IOException

getTextLength

public int getTextLength()
                  throws IOException
Description copied from class: JsonParser
Accessor used with JsonParser.getTextCharacters(), to know length of String stored in returned buffer.

Overrides:
getTextLength in class JsonParserDelegate
Returns:
Number of characters within buffer returned by JsonParser.getTextCharacters() that are part of textual content of the current token.
Throws:
IOException

getTextOffset

public int getTextOffset()
                  throws IOException
Description copied from class: JsonParser
Accessor used with JsonParser.getTextCharacters(), to know offset of the first text content character within buffer.

Overrides:
getTextOffset in class JsonParserDelegate
Returns:
Offset of the first character within buffer returned by JsonParser.getTextCharacters() that is part of textual content of the current token.
Throws:
IOException

getBigIntegerValue

public BigInteger getBigIntegerValue()
                              throws IOException
Description copied from class: JsonParser
Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_INT and it can not be used as a Java long primitive type due to its magnitude. It can also be called for JsonToken.VALUE_NUMBER_FLOAT; if so, it is equivalent to calling JsonParser.getDecimalValue() and then constructing a BigInteger from that value.

Overrides:
getBigIntegerValue in class JsonParserDelegate
Throws:
IOException

getBooleanValue

public boolean getBooleanValue()
                        throws IOException
Description copied from class: JsonParser
Convenience accessor that can be called when the current token is JsonToken.VALUE_TRUE or JsonToken.VALUE_FALSE.

Note: if the token is not of above-mentioned boolean types, an integer, but its value falls outside of range of Java long, a JsonParseException may be thrown to indicate numeric overflow/underflow.

Overrides:
getBooleanValue in class JsonParserDelegate
Throws:
IOException

getByteValue

public byte getByteValue()
                  throws IOException
Description copied from class: JsonParser
Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_INT and it can be expressed as a value of Java byte primitive type. It can also be called for JsonToken.VALUE_NUMBER_FLOAT; if so, it is equivalent to calling JsonParser.getDoubleValue() and then casting; except for possible overflow/underflow exception.

Note: if the resulting integer value falls outside range of Java byte, a JsonParseException will be thrown to indicate numeric overflow/underflow.

Overrides:
getByteValue in class JsonParserDelegate
Throws:
IOException

getShortValue

public short getShortValue()
                    throws IOException
Description copied from class: JsonParser
Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_INT and it can be expressed as a value of Java short primitive type. It can also be called for JsonToken.VALUE_NUMBER_FLOAT; if so, it is equivalent to calling JsonParser.getDoubleValue() and then casting; except for possible overflow/underflow exception.

Note: if the resulting integer value falls outside range of Java short, a JsonParseException will be thrown to indicate numeric overflow/underflow.

Overrides:
getShortValue in class JsonParserDelegate
Throws:
IOException

getDecimalValue

public BigDecimal getDecimalValue()
                           throws IOException
Description copied from class: JsonParser
Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_FLOAT or JsonToken.VALUE_NUMBER_INT. No under/overflow exceptions are ever thrown.

Overrides:
getDecimalValue in class JsonParserDelegate
Throws:
IOException

getDoubleValue

public double getDoubleValue()
                      throws IOException
Description copied from class: JsonParser
Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_FLOAT and it can be expressed as a Java double primitive type. It can also be called for JsonToken.VALUE_NUMBER_INT; if so, it is equivalent to calling JsonParser.getLongValue() and then casting; except for possible overflow/underflow exception.

Note: if the value falls outside of range of Java double, a JsonParseException will be thrown to indicate numeric overflow/underflow.

Overrides:
getDoubleValue in class JsonParserDelegate
Throws:
IOException

getFloatValue

public float getFloatValue()
                    throws IOException
Description copied from class: JsonParser
Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_FLOAT and it can be expressed as a Java float primitive type. It can also be called for JsonToken.VALUE_NUMBER_INT; if so, it is equivalent to calling JsonParser.getLongValue() and then casting; except for possible overflow/underflow exception.

Note: if the value falls outside of range of Java float, a JsonParseException will be thrown to indicate numeric overflow/underflow.

Overrides:
getFloatValue in class JsonParserDelegate
Throws:
IOException

getIntValue

public int getIntValue()
                throws IOException
Description copied from class: JsonParser
Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_INT and it can be expressed as a value of Java int primitive type. It can also be called for JsonToken.VALUE_NUMBER_FLOAT; if so, it is equivalent to calling JsonParser.getDoubleValue() and then casting; except for possible overflow/underflow exception.

Note: if the resulting integer value falls outside range of Java int, a JsonParseException may be thrown to indicate numeric overflow/underflow.

Overrides:
getIntValue in class JsonParserDelegate
Throws:
IOException

getLongValue

public long getLongValue()
                  throws IOException
Description copied from class: JsonParser
Numeric accessor that can be called when the current token is of type JsonToken.VALUE_NUMBER_INT and it can be expressed as a Java long primitive type. It can also be called for JsonToken.VALUE_NUMBER_FLOAT; if so, it is equivalent to calling JsonParser.getDoubleValue() and then casting to int; except for possible overflow/underflow exception.

Note: if the token is an integer, but its value falls outside of range of Java long, a JsonParseException may be thrown to indicate numeric overflow/underflow.

Overrides:
getLongValue in class JsonParserDelegate
Throws:
IOException

getNumberType

public JsonParser.NumberType getNumberType()
                                    throws IOException
Description copied from class: JsonParser
If current token is of type JsonToken.VALUE_NUMBER_INT or JsonToken.VALUE_NUMBER_FLOAT, returns one of JsonParser.NumberType constants; otherwise returns null.

Overrides:
getNumberType in class JsonParserDelegate
Throws:
IOException

getNumberValue

public Number getNumberValue()
                      throws IOException
Description copied from class: JsonParser
Generic number value accessor method that will work for all kinds of numeric values. It will return the optimal (simplest/smallest possible) wrapper object that can express the numeric value just parsed.

Overrides:
getNumberValue in class JsonParserDelegate
Throws:
IOException

getValueAsInt

public int getValueAsInt()
                  throws IOException
Description copied from class: JsonParser
Method that will try to convert value of current token to a int. Numbers are coerced using default Java rules; booleans convert to 0 (false) and 1 (true), and Strings are parsed using default Java language integer parsing rules.

If representation can not be converted to an int (including structured type markers like start/end Object/Array) default value of 0 will be returned; no exceptions are thrown.

Overrides:
getValueAsInt in class JsonParserDelegate
Throws:
IOException

getValueAsInt

public int getValueAsInt(int defaultValue)
                  throws IOException
Description copied from class: JsonParser
Method that will try to convert value of current token to a int. Numbers are coerced using default Java rules; booleans convert to 0 (false) and 1 (true), and Strings are parsed using default Java language integer parsing rules.

If representation can not be converted to an int (including structured type markers like start/end Object/Array) specified def will be returned; no exceptions are thrown.

Overrides:
getValueAsInt in class JsonParserDelegate
Throws:
IOException

getValueAsLong

public long getValueAsLong()
                    throws IOException
Description copied from class: JsonParser
Method that will try to convert value of current token to a long. Numbers are coerced using default Java rules; booleans convert to 0 (false) and 1 (true), and Strings are parsed using default Java language integer parsing rules.

If representation can not be converted to an int (including structured type markers like start/end Object/Array) default value of 0 will be returned; no exceptions are thrown.

Overrides:
getValueAsLong in class JsonParserDelegate
Throws:
IOException

getValueAsLong

public long getValueAsLong(long defaultValue)
                    throws IOException
Description copied from class: JsonParser
Method that will try to convert value of current token to a long. Numbers are coerced using default Java rules; booleans convert to 0 (false) and 1 (true), and Strings are parsed using default Java language integer parsing rules.

If representation can not be converted to an int (including structured type markers like start/end Object/Array) specified def will be returned; no exceptions are thrown.

Overrides:
getValueAsLong in class JsonParserDelegate
Throws:
IOException

getValueAsDouble

public double getValueAsDouble()
                        throws IOException
Description copied from class: JsonParser
Method that will try to convert value of current token to a Java double. Numbers are coerced using default Java rules; booleans convert to 0.0 (false) and 1.0 (true), and Strings are parsed using default Java language integer parsing rules.

If representation can not be converted to an int (including structured types like Objects and Arrays), default value of 0.0 will be returned; no exceptions are thrown.

Overrides:
getValueAsDouble in class JsonParserDelegate
Throws:
IOException

getValueAsDouble

public double getValueAsDouble(double defaultValue)
                        throws IOException
Description copied from class: JsonParser
Method that will try to convert value of current token to a Java double. Numbers are coerced using default Java rules; booleans convert to 0.0 (false) and 1.0 (true), and Strings are parsed using default Java language integer parsing rules.

If representation can not be converted to an int (including structured types like Objects and Arrays), specified def will be returned; no exceptions are thrown.

Overrides:
getValueAsDouble in class JsonParserDelegate
Throws:
IOException

getValueAsBoolean

public boolean getValueAsBoolean()
                          throws IOException
Description copied from class: JsonParser
Method that will try to convert value of current token to a boolean. JSON booleans map naturally; integer numbers other than 0 map to true, and 0 maps to false and Strings 'true' and 'false' map to corresponding values.

If representation can not be converted to a boolean value (including structured types like Objects and Arrays), default value of false will be returned; no exceptions are thrown.

Overrides:
getValueAsBoolean in class JsonParserDelegate
Throws:
IOException

getValueAsBoolean

public boolean getValueAsBoolean(boolean defaultValue)
                          throws IOException
Description copied from class: JsonParser
Method that will try to convert value of current token to a boolean. JSON booleans map naturally; integer numbers other than 0 map to true, and 0 maps to false and Strings 'true' and 'false' map to corresponding values.

If representation can not be converted to a boolean value (including structured types like Objects and Arrays), specified def will be returned; no exceptions are thrown.

Overrides:
getValueAsBoolean in class JsonParserDelegate
Throws:
IOException

getValueAsString

public String getValueAsString()
                        throws IOException
Description copied from class: JsonParser
Method that will try to convert value of current token to a String. JSON Strings map naturally; scalar values get converted to their textual representation. If representation can not be converted to a String value (including structured types like Objects and Arrays and null token), default value of null will be returned; no exceptions are thrown.

Overrides:
getValueAsString in class JsonParserDelegate
Throws:
IOException

getValueAsString

public String getValueAsString(String defaultValue)
                        throws IOException
Description copied from class: JsonParser
Method that will try to convert value of current token to a String. JSON Strings map naturally; scalar values get converted to their textual representation. If representation can not be converted to a String value (including structured types like Objects and Arrays and null token), specified default value will be returned; no exceptions are thrown.

Overrides:
getValueAsString in class JsonParserDelegate
Throws:
IOException

getEmbeddedObject

public Object getEmbeddedObject()
                         throws IOException
Description copied from class: JsonParser
Accessor that can be called if (and only if) the current token is JsonToken.VALUE_EMBEDDED_OBJECT. For other token types, null is returned.

Note: only some specialized parser implementations support embedding of objects (usually ones that are facades on top of non-streaming sources, such as object trees).

Overrides:
getEmbeddedObject in class JsonParserDelegate
Throws:
IOException

getBinaryValue

public byte[] getBinaryValue(Base64Variant b64variant)
                      throws IOException
Description copied from class: JsonParser
Method that can be used to read (and consume -- results may not be accessible using other methods after the call) base64-encoded binary data included in the current textual JSON value. It works similar to getting String value via JsonParser.getText() and decoding result (except for decoding part), but should be significantly more performant.

Note that non-decoded textual contents of the current token are not guaranteed to be accessible after this method is called. Current implementation, for example, clears up textual content during decoding. Decoded binary content, however, will be retained until parser is advanced to the next event.

Overrides:
getBinaryValue in class JsonParserDelegate
Parameters:
b64variant - Expected variant of base64 encoded content (see Base64Variants for definitions of "standard" variants).
Returns:
Decoded binary data
Throws:
IOException

readBinaryValue

public int readBinaryValue(Base64Variant b64variant,
                           OutputStream out)
                    throws IOException
Description copied from class: JsonParser
Similar to JsonParser.readBinaryValue(OutputStream) but allows explicitly specifying base64 variant to use.

Overrides:
readBinaryValue in class JsonParserDelegate
Parameters:
b64variant - base64 variant to use
out - Output stream to use for passing decoded binary data
Returns:
Number of bytes that were decoded and written via OutputStream
Throws:
IOException

getTokenLocation

public JsonLocation getTokenLocation()
Description copied from class: JsonParser
Method that return the starting location of the current token; that is, position of the first character from input that starts the current token.

Overrides:
getTokenLocation in class JsonParserDelegate

_filterContext

protected JsonStreamContext _filterContext()


Copyright © 2008-2016 FasterXML. All Rights Reserved.