Uses of Class
org.codehaus.jackson.io.SerializedString
Packages that use SerializedString
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser
)
and generator
(JsonParser
)
instances.Parser and generator implementation classes that Jackson
defines and uses.
Contains basic mapper (conversion) functionality that
allows for converting between regular streaming json content and
Java objects (beans or Tree Model: support for both is via
ObjectMapper
class, as well
as convenience methods included in
JsonParser
Contains implementation classes of deserialization part of
data binding.
Contains implementation classes of serialization part of
data binding.
Utility classes for Mapper package.
Utility classes used by Jackson Core functionality.
-
Uses of SerializedString in org.codehaus.jackson
Methods in org.codehaus.jackson with parameters of type SerializedStringModifier and TypeMethodDescriptionvoid
JsonGenerator.writeFieldName
(SerializedString 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. -
Uses of SerializedString in org.codehaus.jackson.impl
Methods in org.codehaus.jackson.impl with parameters of type SerializedStringModifier and TypeMethodDescriptionfinal void
Utf8Generator.writeFieldName
(SerializedString name) final void
WriterBasedGenerator.writeFieldName
(SerializedString name) -
Uses of SerializedString in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map that return SerializedStringModifier and TypeMethodDescriptionabstract SerializedString
DeserializerProvider.findExpectedRootName
(DeserializationConfig config, JavaType type) Method that can be used to try find expected root name for given type -
Uses of SerializedString in org.codehaus.jackson.map.deser
Methods in org.codehaus.jackson.map.deser that return SerializedStringModifier and TypeMethodDescriptionStdDeserializerProvider.findExpectedRootName
(DeserializationConfig config, JavaType type) -
Uses of SerializedString in org.codehaus.jackson.map.ser
Fields in org.codehaus.jackson.map.ser declared as SerializedStringModifier and TypeFieldDescriptionprotected final SerializedString
BeanPropertyWriter._name
Logical name of the property; will be used as the field name under which value for the property is written.Methods in org.codehaus.jackson.map.ser that return SerializedStringConstructors in org.codehaus.jackson.map.ser with parameters of type SerializedStringModifierConstructorDescriptionBeanPropertyWriter
(AnnotatedMember member, Annotations contextAnnotations, SerializedString name, JavaType declaredType, JsonSerializer<Object> ser, TypeSerializer typeSer, JavaType serType, Method m, Field f, boolean suppressNulls, Object suppressableValue) -
Uses of SerializedString in org.codehaus.jackson.map.util
Fields in org.codehaus.jackson.map.util with type parameters of type SerializedStringModifier and TypeFieldDescriptionprotected LRUMap
<ClassKey, SerializedString> RootNameLookup._rootNames
For efficient operation, let's try to minimize number of times we need to introspect root element name to use.Methods in org.codehaus.jackson.map.util that return SerializedStringModifier and TypeMethodDescriptionRootNameLookup.findRootName
(Class<?> rootType, MapperConfig<?> config) RootNameLookup.findRootName
(JavaType rootType, MapperConfig<?> config) EnumValues.serializedValueFor
(Enum<?> key) Methods in org.codehaus.jackson.map.util that return types with arguments of type SerializedString -
Uses of SerializedString in org.codehaus.jackson.util
Methods in org.codehaus.jackson.util with parameters of type SerializedStringModifier and TypeMethodDescriptionvoid
JsonGeneratorDelegate.writeFieldName
(SerializedString name) void
TokenBuffer.writeFieldName
(SerializedString name)