Uses of Interface
com.fasterxml.jackson.core.SerializableString

Packages that use SerializableString
com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantly JsonFactory used for constructing JSON parser (JsonParser) and generator (JsonParser) instances. 
com.fasterxml.jackson.core.base Base classes used by concrete Parser and Generator implementations; contain functionality that is not specific to JSON or input abstraction (byte vs char). 
com.fasterxml.jackson.core.io   
com.fasterxml.jackson.core.json JSON-specific parser and generator implementation classes that Jackson defines and uses. 
com.fasterxml.jackson.core.util Utility classes used by Jackson Core functionality. 
 

Uses of SerializableString in com.fasterxml.jackson.core
 

Methods in com.fasterxml.jackson.core with parameters of type SerializableString
 boolean JsonParser.nextFieldName(SerializableString str)
          Method that fetches next token (as if calling JsonParser.nextToken()) and verifies whether it is JsonToken.FIELD_NAME with specified name and returns result of that comparison.
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.
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.
 

Uses of SerializableString in com.fasterxml.jackson.core.base
 

Methods in com.fasterxml.jackson.core.base with parameters of type SerializableString
 void GeneratorBase.writeFieldName(SerializableString name)
           
 void GeneratorBase.writeString(SerializableString text)
           
 

Uses of SerializableString in com.fasterxml.jackson.core.io
 

Classes in com.fasterxml.jackson.core.io that implement SerializableString
 class SerializedString
          String token that can lazily serialize String contained and then reuse that serialization later on.
 

Methods in com.fasterxml.jackson.core.io that return SerializableString
abstract  SerializableString CharacterEscapes.getEscapeSequence(int ch)
          Method generators can call to get lookup table for determining exact escape sequence to use for given character.
 

Uses of SerializableString in com.fasterxml.jackson.core.json
 

Fields in com.fasterxml.jackson.core.json declared as SerializableString
protected  SerializableString WriterBasedJsonGenerator._currentEscape
          When custom escapes are used, this member variable can be used to store escape to use
 

Methods in com.fasterxml.jackson.core.json with parameters of type SerializableString
protected  void UTF8JsonGenerator._writeFieldName(SerializableString name)
           
 void WriterBasedJsonGenerator._writeFieldName(SerializableString name, boolean commaBefore)
           
protected  void WriterBasedJsonGenerator._writePPFieldName(SerializableString name, boolean commaBefore)
           
protected  void UTF8JsonGenerator._writePPFieldName(SerializableString name, boolean commaBefore)
           
 boolean UTF8StreamJsonParser.nextFieldName(SerializableString str)
           
 void WriterBasedJsonGenerator.writeFieldName(SerializableString name)
           
 void UTF8JsonGenerator.writeFieldName(SerializableString name)
           
 void WriterBasedJsonGenerator.writeString(SerializableString sstr)
           
 void UTF8JsonGenerator.writeString(SerializableString text)
           
 

Uses of SerializableString in com.fasterxml.jackson.core.util
 

Methods in com.fasterxml.jackson.core.util with parameters of type SerializableString
 void JsonGeneratorDelegate.writeFieldName(SerializableString name)
           
 void JsonGeneratorDelegate.writeString(SerializableString text)
           
 



Copyright © 2012 fasterxml.com. All Rights Reserved.