Class TokenBuffer.Parser
- java.lang.Object
-
- com.fasterxml.jackson.core.JsonParser
-
- com.fasterxml.jackson.core.base.ParserMinimalBase
-
- com.fasterxml.jackson.databind.util.TokenBuffer.Parser
-
- All Implemented Interfaces:
com.fasterxml.jackson.core.Versioned,Closeable,AutoCloseable
- Enclosing class:
- TokenBuffer
protected static final class TokenBuffer.Parser extends com.fasterxml.jackson.core.base.ParserMinimalBase
-
-
Field Summary
Fields Modifier and Type Field Description protected com.fasterxml.jackson.core.util.ByteArrayBuilder_byteBuilderprotected boolean_closedprotected com.fasterxml.jackson.core.ObjectCodec_codecprotected boolean_hasNativeIdsprotected boolean_hasNativeObjectIdsprotected boolean_hasNativeTypeIdsprotected com.fasterxml.jackson.core.JsonLocation_locationprotected TokenBufferReadContext_parsingContextInformation about parser context, context in which the next token is to be parsed (root, array, object).protected TokenBuffer.Segment_segmentCurrently active segmentprotected int_segmentPtrPointer to current token within current segment-
Fields inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase
_currToken, _lastClearedToken, BD_MAX_INT, BD_MAX_LONG, BD_MIN_INT, BD_MIN_LONG, BI_MAX_INT, BI_MAX_LONG, BI_MIN_INT, BI_MIN_LONG, CHAR_NULL, INT_0, INT_9, INT_APOS, INT_ASTERISK, INT_BACKSLASH, INT_COLON, INT_COMMA, INT_CR, INT_e, INT_E, INT_HASH, INT_LBRACKET, INT_LCURLY, INT_LF, INT_MINUS, INT_PERIOD, INT_PLUS, INT_QUOTE, INT_RBRACKET, INT_RCURLY, INT_SLASH, INT_SPACE, INT_TAB, MAX_ERROR_TOKEN_LENGTH, MAX_INT_D, MAX_INT_L, MAX_LONG_D, MIN_INT_D, MIN_INT_L, MIN_LONG_D, NO_BYTES, NO_INTS, NR_BIGDECIMAL, NR_BIGINT, NR_DOUBLE, NR_FLOAT, NR_INT, NR_LONG, NR_UNKNOWN
-
-
Constructor Summary
Constructors Constructor Description Parser(TokenBuffer.Segment firstSeg, com.fasterxml.jackson.core.ObjectCodec codec, boolean hasNativeTypeIds, boolean hasNativeObjectIds)Deprecated.Parser(TokenBuffer.Segment firstSeg, com.fasterxml.jackson.core.ObjectCodec codec, boolean hasNativeTypeIds, boolean hasNativeObjectIds, com.fasterxml.jackson.core.JsonStreamContext parentContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void_checkIsNumber()protected int_convertNumberToInt(Number n)protected long_convertNumberToLong(Number n)protected Object_currentObject()protected void_handleEOF()booleancanReadObjectId()booleancanReadTypeId()voidclose()BigIntegergetBigIntegerValue()byte[]getBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant)com.fasterxml.jackson.core.ObjectCodecgetCodec()com.fasterxml.jackson.core.JsonLocationgetCurrentLocation()StringgetCurrentName()BigDecimalgetDecimalValue()doublegetDoubleValue()ObjectgetEmbeddedObject()floatgetFloatValue()intgetIntValue()longgetLongValue()com.fasterxml.jackson.core.JsonParser.NumberTypegetNumberType()NumbergetNumberValue()ObjectgetObjectId()com.fasterxml.jackson.core.JsonStreamContextgetParsingContext()StringgetText()char[]getTextCharacters()intgetTextLength()intgetTextOffset()com.fasterxml.jackson.core.JsonLocationgetTokenLocation()ObjectgetTypeId()booleanhasTextCharacters()booleanisClosed()booleanisNaN()StringnextFieldName()com.fasterxml.jackson.core.JsonTokennextToken()voidoverrideCurrentName(String name)com.fasterxml.jackson.core.JsonTokenpeekNextToken()intreadBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant, OutputStream out)voidsetCodec(com.fasterxml.jackson.core.ObjectCodec c)voidsetLocation(com.fasterxml.jackson.core.JsonLocation l)com.fasterxml.jackson.core.Versionversion()-
Methods inherited from class com.fasterxml.jackson.core.base.ParserMinimalBase
_ascii, _asciiBytes, _constructError, _decodeBase64, _getCharDesc, _hasTextualNull, _longIntegerDesc, _longNumberDesc, _reportError, _reportError, _reportError, _reportInputCoercion, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOF, _reportInvalidEOFInValue, _reportInvalidEOFInValue, _reportMissingRootWS, _reportUnexpectedChar, _throwInternal, _throwInvalidSpace, _wrapError, clearCurrentToken, currentToken, currentTokenId, getCurrentToken, getCurrentTokenId, getLastClearedToken, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsInt, getValueAsLong, getValueAsLong, getValueAsString, getValueAsString, hasCurrentToken, hasToken, hasTokenId, isExpectedStartArrayToken, isExpectedStartObjectToken, nextValue, reportInvalidNumber, reportOverflowInt, reportOverflowInt, reportOverflowInt, reportOverflowLong, reportOverflowLong, reportOverflowLong, reportUnexpectedNumberChar, skipChildren
-
Methods inherited from class com.fasterxml.jackson.core.JsonParser
_codec, _constructError, _reportUnsupportedOperation, canParseAsync, canUseSchema, configure, currentName, disable, enable, finishToken, getBinaryValue, getBooleanValue, getByteValue, getCurrentValue, getFeatureMask, getFormatFeatures, getInputSource, getNonBlockingInputFeeder, getSchema, getShortValue, getText, getValueAsBoolean, getValueAsDouble, isEnabled, isEnabled, nextBooleanValue, nextFieldName, nextIntValue, nextLongValue, nextTextValue, overrideFormatFeatures, overrideStdFeatures, readBinaryValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, requiresCustomCodec, setCurrentValue, setFeatureMask, setRequestPayloadOnError, setRequestPayloadOnError, setRequestPayloadOnError, setSchema
-
-
-
-
Field Detail
-
_codec
protected com.fasterxml.jackson.core.ObjectCodec _codec
-
_hasNativeTypeIds
protected final boolean _hasNativeTypeIds
- Since:
- 2.3
-
_hasNativeObjectIds
protected final boolean _hasNativeObjectIds
- Since:
- 2.3
-
_hasNativeIds
protected final boolean _hasNativeIds
-
_segment
protected TokenBuffer.Segment _segment
Currently active segment
-
_segmentPtr
protected int _segmentPtr
Pointer to current token within current segment
-
_parsingContext
protected TokenBufferReadContext _parsingContext
Information about parser context, context in which the next token is to be parsed (root, array, object).
-
_closed
protected boolean _closed
-
_byteBuilder
protected transient com.fasterxml.jackson.core.util.ByteArrayBuilder _byteBuilder
-
_location
protected com.fasterxml.jackson.core.JsonLocation _location
-
-
Constructor Detail
-
Parser
@Deprecated public Parser(TokenBuffer.Segment firstSeg, com.fasterxml.jackson.core.ObjectCodec codec, boolean hasNativeTypeIds, boolean hasNativeObjectIds)
Deprecated.
-
Parser
public Parser(TokenBuffer.Segment firstSeg, com.fasterxml.jackson.core.ObjectCodec codec, boolean hasNativeTypeIds, boolean hasNativeObjectIds, com.fasterxml.jackson.core.JsonStreamContext parentContext)
-
-
Method Detail
-
setLocation
public void setLocation(com.fasterxml.jackson.core.JsonLocation l)
-
getCodec
public com.fasterxml.jackson.core.ObjectCodec getCodec()
- Specified by:
getCodecin classcom.fasterxml.jackson.core.JsonParser
-
setCodec
public void setCodec(com.fasterxml.jackson.core.ObjectCodec c)
- Specified by:
setCodecin classcom.fasterxml.jackson.core.JsonParser
-
version
public com.fasterxml.jackson.core.Version version()
- Specified by:
versionin interfacecom.fasterxml.jackson.core.Versioned- Specified by:
versionin classcom.fasterxml.jackson.core.JsonParser
-
peekNextToken
public com.fasterxml.jackson.core.JsonToken peekNextToken() throws IOException- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classcom.fasterxml.jackson.core.base.ParserMinimalBase- Throws:
IOException
-
nextToken
public com.fasterxml.jackson.core.JsonToken nextToken() throws IOException- Specified by:
nextTokenin classcom.fasterxml.jackson.core.base.ParserMinimalBase- Throws:
IOException
-
nextFieldName
public String nextFieldName() throws IOException
- Overrides:
nextFieldNamein classcom.fasterxml.jackson.core.JsonParser- Throws:
IOException
-
isClosed
public boolean isClosed()
- Specified by:
isClosedin classcom.fasterxml.jackson.core.base.ParserMinimalBase
-
getParsingContext
public com.fasterxml.jackson.core.JsonStreamContext getParsingContext()
- Specified by:
getParsingContextin classcom.fasterxml.jackson.core.base.ParserMinimalBase
-
getTokenLocation
public com.fasterxml.jackson.core.JsonLocation getTokenLocation()
- Specified by:
getTokenLocationin classcom.fasterxml.jackson.core.JsonParser
-
getCurrentLocation
public com.fasterxml.jackson.core.JsonLocation getCurrentLocation()
- Specified by:
getCurrentLocationin classcom.fasterxml.jackson.core.JsonParser
-
getCurrentName
public String getCurrentName()
- Specified by:
getCurrentNamein classcom.fasterxml.jackson.core.base.ParserMinimalBase
-
overrideCurrentName
public void overrideCurrentName(String name)
- Specified by:
overrideCurrentNamein classcom.fasterxml.jackson.core.base.ParserMinimalBase
-
getText
public String getText()
- Specified by:
getTextin classcom.fasterxml.jackson.core.base.ParserMinimalBase
-
getTextCharacters
public char[] getTextCharacters()
- Specified by:
getTextCharactersin classcom.fasterxml.jackson.core.base.ParserMinimalBase
-
getTextLength
public int getTextLength()
- Specified by:
getTextLengthin classcom.fasterxml.jackson.core.base.ParserMinimalBase
-
getTextOffset
public int getTextOffset()
- Specified by:
getTextOffsetin classcom.fasterxml.jackson.core.base.ParserMinimalBase
-
hasTextCharacters
public boolean hasTextCharacters()
- Specified by:
hasTextCharactersin classcom.fasterxml.jackson.core.base.ParserMinimalBase
-
isNaN
public boolean isNaN()
- Overrides:
isNaNin classcom.fasterxml.jackson.core.JsonParser
-
getBigIntegerValue
public BigInteger getBigIntegerValue() throws IOException
- Specified by:
getBigIntegerValuein classcom.fasterxml.jackson.core.JsonParser- Throws:
IOException
-
getDecimalValue
public BigDecimal getDecimalValue() throws IOException
- Specified by:
getDecimalValuein classcom.fasterxml.jackson.core.JsonParser- Throws:
IOException
-
getDoubleValue
public double getDoubleValue() throws IOException- Specified by:
getDoubleValuein classcom.fasterxml.jackson.core.JsonParser- Throws:
IOException
-
getFloatValue
public float getFloatValue() throws IOException- Specified by:
getFloatValuein classcom.fasterxml.jackson.core.JsonParser- Throws:
IOException
-
getIntValue
public int getIntValue() throws IOException- Specified by:
getIntValuein classcom.fasterxml.jackson.core.JsonParser- Throws:
IOException
-
getLongValue
public long getLongValue() throws IOException- Specified by:
getLongValuein classcom.fasterxml.jackson.core.JsonParser- Throws:
IOException
-
getNumberType
public com.fasterxml.jackson.core.JsonParser.NumberType getNumberType() throws IOException- Specified by:
getNumberTypein classcom.fasterxml.jackson.core.JsonParser- Throws:
IOException
-
getNumberValue
public final Number getNumberValue() throws IOException
- Specified by:
getNumberValuein classcom.fasterxml.jackson.core.JsonParser- Throws:
IOException
-
_convertNumberToInt
protected int _convertNumberToInt(Number n) throws IOException
- Throws:
IOException
-
_convertNumberToLong
protected long _convertNumberToLong(Number n) throws IOException
- Throws:
IOException
-
getEmbeddedObject
public Object getEmbeddedObject()
- Overrides:
getEmbeddedObjectin classcom.fasterxml.jackson.core.JsonParser
-
getBinaryValue
public byte[] getBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant) throws IOException, com.fasterxml.jackson.core.JsonParseException- Specified by:
getBinaryValuein classcom.fasterxml.jackson.core.base.ParserMinimalBase- Throws:
IOExceptioncom.fasterxml.jackson.core.JsonParseException
-
readBinaryValue
public int readBinaryValue(com.fasterxml.jackson.core.Base64Variant b64variant, OutputStream out) throws IOException- Overrides:
readBinaryValuein classcom.fasterxml.jackson.core.JsonParser- Throws:
IOException
-
canReadObjectId
public boolean canReadObjectId()
- Overrides:
canReadObjectIdin classcom.fasterxml.jackson.core.JsonParser
-
canReadTypeId
public boolean canReadTypeId()
- Overrides:
canReadTypeIdin classcom.fasterxml.jackson.core.JsonParser
-
getTypeId
public Object getTypeId()
- Overrides:
getTypeIdin classcom.fasterxml.jackson.core.JsonParser
-
getObjectId
public Object getObjectId()
- Overrides:
getObjectIdin classcom.fasterxml.jackson.core.JsonParser
-
_currentObject
protected final Object _currentObject()
-
_checkIsNumber
protected final void _checkIsNumber() throws com.fasterxml.jackson.core.JsonParseException- Throws:
com.fasterxml.jackson.core.JsonParseException
-
_handleEOF
protected void _handleEOF() throws com.fasterxml.jackson.core.JsonParseException- Specified by:
_handleEOFin classcom.fasterxml.jackson.core.base.ParserMinimalBase- Throws:
com.fasterxml.jackson.core.JsonParseException
-
-