Uses of Interface
com.fasterxml.jackson.core.SerializableString
-
Packages that use SerializableString Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonGenerator) 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.filter 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
Fields in com.fasterxml.jackson.core declared as SerializableString Modifier and Type Field Description protected SerializableStringJsonFactory. _rootValueSeparatorSeparator used between root-level values, if any; null indicates "do not add separator".Methods in com.fasterxml.jackson.core that return SerializableString Modifier and Type Method Description SerializableStringJsonpCharacterEscapes. getEscapeSequence(int ch)Methods in com.fasterxml.jackson.core 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.JsonGeneratorJsonGenerator. setRootValueSeparator(SerializableString sep)Method that allows overriding String used for separating root-level JSON values (default is single space character)abstract 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. writeRaw(SerializableString raw)Method that will force generator to copy input text verbatim with no modifications (including that no escaping is done and no separators are added even if context [array, object] would otherwise require such).voidJsonGenerator. writeRawValue(SerializableString raw)Method similar toJsonGenerator.writeRawValue(String), but potentially more efficient as it may be able to use pre-encoded content (similar toJsonGenerator.writeRaw(SerializableString).abstract 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 com.fasterxml.jackson.core.base
Methods in com.fasterxml.jackson.core.base with parameters of type SerializableString Modifier and Type Method Description voidGeneratorBase. writeFieldName(SerializableString name)voidGeneratorBase. writeRawValue(SerializableString text)voidGeneratorBase. writeString(SerializableString text) -
Uses of SerializableString in com.fasterxml.jackson.core.filter
Methods in com.fasterxml.jackson.core.filter with parameters of type SerializableString Modifier and Type Method Description voidFilteringGeneratorDelegate. writeFieldName(SerializableString name)voidFilteringGeneratorDelegate. writeRaw(SerializableString text)voidFilteringGeneratorDelegate. writeString(SerializableString value) -
Uses of SerializableString in com.fasterxml.jackson.core.io
Classes in com.fasterxml.jackson.core.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 com.fasterxml.jackson.core.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 com.fasterxml.jackson.core.json
Fields in com.fasterxml.jackson.core.json declared as SerializableString Modifier and Type Field Description protected SerializableStringWriterBasedJsonGenerator. _currentEscapeWhen custom escapes are used, this member variable is used internally to hold a reference to currently used escapeprotected SerializableStringJsonGeneratorImpl. _rootValueSeparatorSeparator to use, if any, between root-level values.Methods in com.fasterxml.jackson.core.json with parameters of type SerializableString Modifier and Type Method Description protected voidWriterBasedJsonGenerator. _writeFieldName(SerializableString name, boolean commaBefore)protected voidUTF8JsonGenerator. _writePPFieldName(SerializableString name)protected voidWriterBasedJsonGenerator. _writePPFieldName(SerializableString name, boolean commaBefore)booleanReaderBasedJsonParser. nextFieldName(SerializableString sstr)booleanUTF8StreamJsonParser. nextFieldName(SerializableString str)JsonGeneratorJsonGeneratorImpl. setRootValueSeparator(SerializableString sep)voidUTF8JsonGenerator. writeFieldName(SerializableString name)voidWriterBasedJsonGenerator. writeFieldName(SerializableString name)voidUTF8JsonGenerator. writeRaw(SerializableString text)voidWriterBasedJsonGenerator. writeRaw(SerializableString text)voidUTF8JsonGenerator. writeRawValue(SerializableString text)voidUTF8JsonGenerator. writeString(SerializableString text)voidWriterBasedJsonGenerator. writeString(SerializableString sstr) -
Uses of SerializableString in com.fasterxml.jackson.core.util
Fields in com.fasterxml.jackson.core.util declared as SerializableString Modifier and Type Field Description protected SerializableStringDefaultPrettyPrinter. _rootSeparatorString printed between root-level values, if any.Methods in com.fasterxml.jackson.core.util with parameters of type SerializableString Modifier and Type Method Description JsonGeneratorJsonGeneratorDelegate. setRootValueSeparator(SerializableString sep)DefaultPrettyPrinterDefaultPrettyPrinter. withRootSeparator(SerializableString rootSeparator)voidJsonGeneratorDelegate. writeFieldName(SerializableString name)voidJsonGeneratorDelegate. writeRaw(SerializableString raw)voidJsonGeneratorDelegate. writeString(SerializableString text)Constructors in com.fasterxml.jackson.core.util with parameters of type SerializableString Constructor Description DefaultPrettyPrinter(SerializableString rootSeparator)Constructor that specifies separator String to use between root values; if null, no separator is printed.DefaultPrettyPrinter(DefaultPrettyPrinter base, SerializableString rootSeparator)
-