Uses of Interface
org.codehaus.jackson.SerializableString
-
Packages that use SerializableString Package Description org.codehaus.jackson Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonParser) instances.org.codehaus.jackson.impl Parser and generator implementation classes that Jackson defines and uses.org.codehaus.jackson.io This package contains I/O helper classes Jackson itself uses, but that are not exposed for external reuse.org.codehaus.jackson.util Utility classes used by Jackson Core functionality. -
-
Uses of SerializableString in org.codehaus.jackson
Methods in org.codehaus.jackson with parameters of type SerializableString Modifier and Type Method Description booleanJsonParser. nextFieldName(SerializableString str)Method that fetches next token (as if callingJsonParser.nextToken()) and verifies whether it isJsonToken.FIELD_NAMEwith specified name and returns result of that comparison.voidJsonGenerator. writeFieldName(SerializableString name)Method similar toJsonGenerator.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.voidJsonGenerator. writeString(SerializableString text)Method similar toJsonGenerator.writeString(String), but that takesSerializableStringwhich can make this potentially more efficient to call as generator may be able to reuse quoted and/or encoded representation. -
Uses of SerializableString in org.codehaus.jackson.impl
Fields in org.codehaus.jackson.impl declared as SerializableString Modifier and Type Field Description protected SerializableStringWriterBasedGenerator. _currentEscapeWhen custom escapes are used, this member variable can be used to store escape to useMethods in org.codehaus.jackson.impl with parameters of type SerializableString Modifier and Type Method Description protected voidUtf8Generator. _writeFieldName(SerializableString name)voidWriterBasedGenerator. _writeFieldName(SerializableString name, boolean commaBefore)protected voidUtf8Generator. _writePPFieldName(SerializableString name, boolean commaBefore)protected voidWriterBasedGenerator. _writePPFieldName(SerializableString name, boolean commaBefore)booleanUtf8StreamParser. nextFieldName(SerializableString str)voidUtf8Generator. writeFieldName(SerializableString name)voidWriterBasedGenerator. writeFieldName(SerializableString name)voidUtf8Generator. writeString(SerializableString text)voidWriterBasedGenerator. writeString(SerializableString sstr) -
Uses of SerializableString in org.codehaus.jackson.io
Classes in org.codehaus.jackson.io that implement SerializableString Modifier and Type Class Description classSerializedStringString token that can lazily serialize String contained and then reuse that serialization later on.Methods in org.codehaus.jackson.io that return SerializableString Modifier and Type Method Description abstract SerializableStringCharacterEscapes. 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 org.codehaus.jackson.util
Methods in org.codehaus.jackson.util with parameters of type SerializableString Modifier and Type Method Description voidJsonGeneratorDelegate. writeFieldName(SerializableString name)voidTokenBuffer. writeFieldName(SerializableString name)voidJsonGeneratorDelegate. writeString(SerializableString text)voidTokenBuffer. writeString(SerializableString text)
-