public abstract class ParserMinimalBase extends JacksonParser
JacksonParser
implementations, but does not add any additional fields that depend
on particular method of obtaining input.
Note that 'minimal' here mostly refers to minimal number of fields (size) and functionality that is specific to certain types of parser implementations; but not necessarily to number of methods.
JacksonParser.Feature, JacksonParser.NumberType| 限定符和类型 | 方法和说明 |
|---|---|
void |
clearCurrentToken()
Method called to "consume" the current token by effectively
removing it so that
JacksonParser.hasCurrentToken() returns false, and
JacksonParser.getCurrentToken() null). |
abstract void |
close()
Closes the parser so that no further iteration or data access
can be made; will also close the underlying input source
if parser either owns the input source, or feature
JacksonParser.Feature.AUTO_CLOSE_SOURCE is enabled. |
abstract 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.
|
abstract 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 JacksonParser.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.
|
JsonToken |
getLastClearedToken()
Method that can be called to get the last token that was
cleared using
JacksonParser.clearCurrentToken(). |
abstract JsonStreamContext |
getParsingContext()
Method that can be used to access current parsing context reader
is in.
|
abstract String |
getText()
Method for accessing textual representation of the current token;
if no current token (before first call to
JacksonParser.nextToken(), or
after encountering end-of-input), returns null. |
abstract char[] |
getTextCharacters()
Method similar to
JacksonParser.getText(), but that will return
underlying (unmodifiable) character array that contains
textual value, instead of constructing a String object
to contain this information. |
abstract int |
getTextLength()
Accessor used with
JacksonParser.getTextCharacters(), to know length
of String stored in returned buffer. |
abstract int |
getTextOffset()
Accessor used with
JacksonParser.getTextCharacters(), to know offset
of the first text content character within buffer. |
boolean |
getValueAsBoolean(boolean defaultValue)
Method that will try to convert value of current token to a
boolean.
|
double |
getValueAsDouble(double defaultValue)
Method that will try to convert value of current token to a
Java double.
|
int |
getValueAsInt(int defaultValue)
Method that will try to convert value of current token to a
int.
|
long |
getValueAsLong(long defaultValue)
Method that will try to convert value of current token to a
long.
|
boolean |
hasCurrentToken()
Method for checking whether parser currently points to
a token (and data for that token is available).
|
abstract boolean |
hasTextCharacters()
Method that can be used to determine whether calling of
JacksonParser.getTextCharacters() would be the most efficient
way to access textual content for the event parser currently
points to. |
abstract boolean |
isClosed()
Method that can be called to determine whether this parser
is closed or not.
|
abstract 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).
|
abstract void |
overrideCurrentName(String name)
Method that can be used to change what is considered to be
the current (field) name.
|
JacksonParser |
skipChildren()
Method that will skip all child tokens of an array or
object token that the parser currently points to,
iff stream points to
JsonToken.START_OBJECT or JsonToken.START_ARRAY. |
Version |
version()
Accessor for getting version of the core package, given a parser instance.
|
canUseSchema, configure, disable, enable, getBigIntegerValue, getBinaryValue, getBooleanValue, getByteValue, getCodec, getCurrentLocation, getDecimalValue, getDoubleValue, getEmbeddedObject, getFloatValue, getInputSource, getIntValue, getLongValue, getNumberType, getNumberValue, getSchema, getShortValue, getTokenLocation, getValueAsBoolean, getValueAsDouble, getValueAsInt, getValueAsLong, isEnabled, isExpectedStartArrayToken, nextBooleanValue, nextFieldName, nextIntValue, nextLongValue, nextTextValue, readValueAs, readValueAs, readValueAsTree, readValuesAs, readValuesAs, releaseBuffered, releaseBuffered, setCodec, setSchemapublic Version version()
JacksonParserversion 在接口中 Versionedversion 在类中 JacksonParserpublic abstract JsonToken nextToken() throws IOException, JsonParseException
JacksonParsernextToken 在类中 JacksonParserIOExceptionJsonParseExceptionpublic JsonToken getCurrentToken()
JacksonParsergetCurrentToken 在类中 JacksonParserpublic boolean hasCurrentToken()
JacksonParserparser.getCurrentToken() != null.hasCurrentToken 在类中 JacksonParserJacksonParser.nextToken(); false otherwise (parser
was just constructed, encountered end-of-input
and returned null from JacksonParser.nextToken(), or the token
has been consumed)public JsonToken nextValue() throws IOException, JsonParseException
JacksonParserJsonToken.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 JacksonParser.getCurrentName() when parser points to
the value.nextValue 在类中 JacksonParserJsonToken.NOT_AVAILABLE if no tokens were
available yet)IOExceptionJsonParseExceptionpublic JacksonParser skipChildren() throws IOException, JsonParseException
JacksonParserJsonToken.START_OBJECT or JsonToken.START_ARRAY.
If not, it will do nothing.
After skipping, stream will point to matching
JsonToken.END_OBJECT or JsonToken.END_ARRAY
(possibly skipping nested pairs of START/END OBJECT/ARRAY tokens
as well as value tokens).
The idea is that after calling this method, application
will call JacksonParser.nextToken() to point to the next
available token, if any.skipChildren 在类中 JacksonParserIOExceptionJsonParseExceptionpublic abstract String getCurrentName() throws IOException, JsonParseException
JacksonParserJsonToken.FIELD_NAMEs it will
be the same as what JacksonParser.getText() returns;
for field values it will be preceding field name;
and for others (array values, root-level values) null.getCurrentName 在类中 JacksonParserIOExceptionJsonParseExceptionpublic abstract void close()
throws IOException
JacksonParserJacksonParser.Feature.AUTO_CLOSE_SOURCE is enabled.
Whether parser owns the input source depends on factory
method that was used to construct instance (so check
JsonFactory for details,
but the general
idea is that if caller passes in closable resource (such
as InputStream or Reader) parser does NOT
own the source; but if it passes a reference (such as
File or URL and creates
stream or reader it does own them.close 在接口中 Closeableclose 在接口中 AutoCloseableclose 在类中 JacksonParserIOExceptionpublic abstract boolean isClosed()
JacksonParserJacksonParser.nextToken() (and the underlying
stream may be closed). Closing may be due to an explicit
call to JacksonParser.close() or because parser has encountered
end of input.isClosed 在类中 JacksonParserpublic abstract JsonStreamContext getParsingContext()
JacksonParsergetParsingContext 在类中 JacksonParserpublic void clearCurrentToken()
JacksonParserJacksonParser.hasCurrentToken() returns false, and
JacksonParser.getCurrentToken() null).
Cleared token value can still be accessed by calling
JacksonParser.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).
clearCurrentToken 在类中 JacksonParserpublic JsonToken getLastClearedToken()
JacksonParserJacksonParser.clearCurrentToken(). This is not necessarily
the latest token read.
Will return null if no tokens have been cleared,
or if parser has been closed.getLastClearedToken 在类中 JacksonParserpublic abstract void overrideCurrentName(String name)
JacksonParserNote that use of this method should only be done as sort of last resort, as it is a work-around for regular operation.
overrideCurrentName 在类中 JacksonParsername - Name to use as the current name; may be null.public abstract String getText() throws IOException, JsonParseException
JacksonParserJacksonParser.nextToken(), or
after encountering end-of-input), returns null.
Method can be called for any token type.getText 在类中 JacksonParserIOExceptionJsonParseExceptionpublic abstract char[] getTextCharacters()
throws IOException,
JsonParseException
JacksonParserJacksonParser.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:
JacksonParser.getTextOffset()) to
know the actual offset
JacksonParser.getTextLength()
for actual length of returned content.
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 JacksonParser.getText())
is to avoid construction of a String object (which
will make a copy of contents).
getTextCharacters 在类中 JacksonParserIOExceptionJsonParseExceptionpublic abstract boolean hasTextCharacters()
JacksonParserJacksonParser.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.
hasTextCharacters 在类中 JacksonParserJacksonParser.getTextCharacters(); false
means that it may or may not existpublic abstract int getTextLength()
throws IOException,
JsonParseException
JacksonParserJacksonParser.getTextCharacters(), to know length
of String stored in returned buffer.getTextLength 在类中 JacksonParserJacksonParser.getTextCharacters() that are part of
textual content of the current token.IOExceptionJsonParseExceptionpublic abstract int getTextOffset()
throws IOException,
JsonParseException
JacksonParserJacksonParser.getTextCharacters(), to know offset
of the first text content character within buffer.getTextOffset 在类中 JacksonParserJacksonParser.getTextCharacters() that is part of
textual content of the current token.IOExceptionJsonParseExceptionpublic abstract byte[] getBinaryValue(Base64Variant b64variant) throws IOException, JsonParseException
JacksonParserJacksonParser.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.
getBinaryValue 在类中 JacksonParserb64variant - Expected variant of base64 encoded
content (see Base64Variants for definitions
of "standard" variants).IOExceptionJsonParseExceptionpublic boolean getValueAsBoolean(boolean defaultValue)
throws IOException,
JsonParseException
JacksonParserIf representation can not be converted to a boolean value (including structured types like Objects and Arrays), specified defaultValue will be returned; no exceptions are thrown.
getValueAsBoolean 在类中 JacksonParserIOExceptionJsonParseExceptionpublic int getValueAsInt(int defaultValue)
throws IOException,
JsonParseException
JacksonParserIf representation can not be converted to an int (including structured type markers like start/end Object/Array) specified defaultValue will be returned; no exceptions are thrown.
getValueAsInt 在类中 JacksonParserIOExceptionJsonParseExceptionpublic long getValueAsLong(long defaultValue)
throws IOException,
JsonParseException
JacksonParserIf representation can not be converted to an int (including structured type markers like start/end Object/Array) specified defaultValue will be returned; no exceptions are thrown.
getValueAsLong 在类中 JacksonParserIOExceptionJsonParseExceptionpublic double getValueAsDouble(double defaultValue)
throws IOException,
JsonParseException
JacksonParserIf representation can not be converted to an int (including structured types like Objects and Arrays), specified defaultValue will be returned; no exceptions are thrown.
getValueAsDouble 在类中 JacksonParserIOExceptionJsonParseExceptionCopyright © 2002–2019 The MyMMSCs Software Foundation. All rights reserved.