| 程序包 | 说明 |
|---|---|
| org.hotwheel.json.impl.jackson |
| 限定符和类型 | 方法和说明 |
|---|---|
abstract SerializableString |
CharacterEscapes.getEscapeSequence(int ch)
Method generators can call to get lookup table for determining
exact escape sequence to use for given character.
|
| 限定符和类型 | 方法和说明 |
|---|---|
void |
WriterBasedJsonGenerator._writeFieldName(SerializableString name,
boolean commaBefore) |
boolean |
JacksonParser.nextFieldName(SerializableString str)
Method that fetches next token (as if calling
JacksonParser.nextToken()) and
verifies whether it is JsonToken.FIELD_NAME with specified name
and returns result of that comparison. |
boolean |
UTF8StreamJsonParser.nextFieldName(SerializableString str) |
abstract void |
JsonGenerator.writeFieldName(SerializableString name)
Method similar to
JsonGenerator.writeFieldName(String), main difference
being that it may perform better as some of processing (such as
quoting of certain characters, or encoding into external encoding
if supported by generator) can be done just once and reused for
later calls. |
void |
JsonGeneratorDelegate.writeFieldName(SerializableString name) |
void |
UTF8JsonGenerator.writeFieldName(SerializableString name) |
void |
WriterBasedJsonGenerator.writeFieldName(SerializableString name) |
void |
GeneratorBase.writeFieldName(SerializableString name) |
abstract void |
JsonGenerator.writeString(SerializableString text)
Method similar to
JsonGenerator.writeString(String), but that takes
SerializableString which can make this potentially
more efficient to call as generator may be able to reuse
quoted and/or encoded representation. |
void |
JsonGeneratorDelegate.writeString(SerializableString text) |
void |
UTF8JsonGenerator.writeString(SerializableString text) |
void |
WriterBasedJsonGenerator.writeString(SerializableString sstr) |
void |
GeneratorBase.writeString(SerializableString text) |
Copyright © 2002–2019 The MyMMSCs Software Foundation. All rights reserved.