Uses of Class
com.fasterxml.jackson.databind.JsonSerializer
-
Packages that use JsonSerializer Package Description com.fasterxml.jackson.databind Basic data binding (mapping) functionality that allows for reading JSON content into Java Objects (POJOs) and JSON Trees (JsonNode), as well as writing Java Objects and trees as JSON.com.fasterxml.jackson.databind.annotation Annotations that directly depend on classes in databinding bundle (not just Jackson core) and cannot be included in Jackson core annotations package (because it cannot have any external dependencies).com.fasterxml.jackson.databind.cfg Package that contains most of configuration-related classes; exception being couple of most-commonly used configuration things (like Feature enumerations) that are at the main level (com.fasterxml.jackson.databind).com.fasterxml.jackson.databind.ext Contains extended support for "external" packages: things that may or may not be present in runtime environment, but that are commonly enough used so that explicit support can be added.com.fasterxml.jackson.databind.module Package that contains classes and interfaces to help implement custom extensionModules (which are registered usingObjectMapper.registerModule(com.fasterxml.jackson.databind.Module).com.fasterxml.jackson.databind.ser Contains implementation classes of serialization part of data binding.com.fasterxml.jackson.databind.ser.impl Contains implementation classes of serialization part of data binding.com.fasterxml.jackson.databind.ser.std -
-
Uses of JsonSerializer in com.fasterxml.jackson.databind
Subclasses of JsonSerializer in com.fasterxml.jackson.databind Modifier and Type Class Description static classJsonSerializer.NoneThis marker class is only to be used with annotations, to indicate that no serializer is configured.Fields in com.fasterxml.jackson.databind declared as JsonSerializer Modifier and Type Field Description protected JsonSerializer<Object>SerializerProvider. _keySerializerSerializer used to output non-null keys of Maps (which will get output as JSON Objects), if not null; if null, us the standard default key serializer.protected JsonSerializer<Object>SerializerProvider. _nullKeySerializerSerializer used to (try to) output a null key, due to an entry ofMaphaving null key.protected JsonSerializer<Object>SerializerProvider. _nullValueSerializerSerializer used to output a null value.protected JsonSerializer<Object>SequenceWriter. _rootSerializerprotected JsonSerializer<Object>SerializerProvider. _unknownTypeSerializerSerializer that gets called for values of types for which no serializers can be constructed.static JsonSerializer<Object>SerializerProvider. DEFAULT_NULL_KEY_SERIALIZERprotected static JsonSerializer<Object>SerializerProvider. DEFAULT_UNKNOWN_SERIALIZERPlaceholder serializer used whenjava.lang.Objecttyped property is marked to be serialized.Methods in com.fasterxml.jackson.databind that return JsonSerializer Modifier and Type Method Description protected JsonSerializer<Object>SerializerProvider. _createAndCacheUntypedSerializer(JavaType type)protected JsonSerializer<Object>SerializerProvider. _createAndCacheUntypedSerializer(Class<?> rawType)Method that will try to construct a value serializer; and if one is successfully created, cache it for reuse.protected JsonSerializer<Object>SerializerProvider. _createUntypedSerializer(JavaType type)protected JsonSerializer<Object>SerializerProvider. _findExplicitUntypedSerializer(Class<?> runtimeType)Method that will try to find a serializer, either from cache or by constructing one; but will not return an "unknown" serializer if this cannot be done but rather returns null.protected JsonSerializer<Object>SerializerProvider. _handleContextualResolvable(JsonSerializer<?> ser, BeanProperty property)Helper method called to resolve and contextualize given serializer, if and as necessary.protected JsonSerializer<Object>SerializerProvider. _handleResolvable(JsonSerializer<?> ser)JsonSerializer<Object>SerializerProvider. findKeySerializer(JavaType keyType, BeanProperty property)Method called to get the serializer to use for serializing non-null Map keys.JsonSerializer<Object>SerializerProvider. findKeySerializer(Class<?> rawKeyType, BeanProperty property)JsonSerializer<Object>SerializerProvider. findNullKeySerializer(JavaType serializationType, BeanProperty property)Method called to find a serializer to use for null values for given declared type.JsonSerializer<Object>SerializerProvider. findNullValueSerializer(BeanProperty property)Method called to get the serializer to use for serializing null values for specified property.JsonSerializer<Object>SerializerProvider. findPrimaryPropertySerializer(JavaType valueType, BeanProperty property)Similar toSerializerProvider.findValueSerializer(JavaType, BeanProperty), but used when finding "primary" property value serializer (one directly handling value of the property).JsonSerializer<Object>SerializerProvider. findPrimaryPropertySerializer(Class<?> valueType, BeanProperty property)JsonSerializer<Object>SerializerProvider. findTypedValueSerializer(JavaType valueType, boolean cache, BeanProperty property)Method called to locate regular serializer, matching type serializer, and if both found, wrap them in a serializer that calls both in correct sequence.JsonSerializer<Object>SerializerProvider. findTypedValueSerializer(Class<?> valueType, boolean cache, BeanProperty property)Method called to locate regular serializer, matching type serializer, and if both found, wrap them in a serializer that calls both in correct sequence.JsonSerializer<Object>SerializerProvider. findValueSerializer(JavaType valueType)Method variant used when we do NOT want contextualization to happen; it will need to be handled at a later point, but caller wants to be able to do that as needed; sometimes to avoid infinite loopsJsonSerializer<Object>SerializerProvider. findValueSerializer(JavaType valueType, BeanProperty property)Similar toSerializerProvider.findValueSerializer(Class,BeanProperty), but takes full generics-aware type instead of raw class.JsonSerializer<Object>SerializerProvider. findValueSerializer(Class<?> valueType)Method variant used when we do NOT want contextualization to happen; it will need to be handled at a later point, but caller wants to be able to do that as needed; sometimes to avoid infinite loopsJsonSerializer<Object>SerializerProvider. findValueSerializer(Class<?> valueType, BeanProperty property)Method called to get hold of a serializer for a value of given type; or if no such serializer can be found, a default handler (which may do a best-effort generic serialization or just simply throw an exception when invoked).JsonSerializer<Object>SerializerProvider. getDefaultNullKeySerializer()JsonSerializer<Object>SerializerProvider. getDefaultNullValueSerializer()JsonSerializer<?>JsonSerializer. getDelegatee()Accessor that can be used to determine if this serializer uses another serializer for actual serialization, by delegating calls.JsonSerializer<Object>SerializerProvider. getUnknownTypeSerializer(Class<?> unknownType)Method called to get the serializer to use if provider cannot determine an actual type-specific serializer to use; typically when none ofSerializerFactoryinstances are able to construct a serializer.JsonSerializer<Object>ObjectWriter.Prefetch. getValueSerializer()JsonSerializer<?>SerializerProvider. handlePrimaryContextualization(JsonSerializer<?> ser, BeanProperty property)Method called for primary property serializers (ones directly created to serialize values of a POJO property), to handle details of resolvingContextualSerializerwith given property context.JsonSerializer<?>SerializerProvider. handleSecondaryContextualization(JsonSerializer<?> ser, BeanProperty property)Method called for secondary property serializers (ones NOT directly created to serialize values of a POJO property but instead created as a dependant serializer -- such as value serializers for structured types, or serializers for root values) to handle details of resolvingContextualDeserializerwith given property context.JsonSerializer<T>JsonSerializer. replaceDelegatee(JsonSerializer<?> delegatee)Method that can be called to try to replace serializer this serializer delegates calls to.abstract JsonSerializer<Object>SerializerProvider. serializerInstance(Annotated annotated, Object serDef)Method that can be called to construct and configure serializer instance, either given aClassto instantiate (with default constructor), or an uninitialized serializer instance.JsonSerializer<T>JsonSerializer. unwrappingSerializer(NameTransformer unwrapper)Method that will return serializer instance that produces "unwrapped" serialization, if applicable for type being serialized (which is the case for some serializers that produce JSON Objects as output).JsonSerializer<?>JsonSerializer. withFilterId(Object filterId)Mutant factory method that is called if contextual configuration indicates that a specific filter (as specified byfilterId) is to be used for serialization.Methods in com.fasterxml.jackson.databind with parameters of type JsonSerializer Modifier and Type Method Description protected JsonSerializer<Object>SerializerProvider. _handleContextualResolvable(JsonSerializer<?> ser, BeanProperty property)Helper method called to resolve and contextualize given serializer, if and as necessary.protected JsonSerializer<Object>SerializerProvider. _handleResolvable(JsonSerializer<?> ser)JsonSerializer<?>SerializerProvider. handlePrimaryContextualization(JsonSerializer<?> ser, BeanProperty property)Method called for primary property serializers (ones directly created to serialize values of a POJO property), to handle details of resolvingContextualSerializerwith given property context.JsonSerializer<?>SerializerProvider. handleSecondaryContextualization(JsonSerializer<?> ser, BeanProperty property)Method called for secondary property serializers (ones NOT directly created to serialize values of a POJO property but instead created as a dependant serializer -- such as value serializers for structured types, or serializers for root values) to handle details of resolvingContextualDeserializerwith given property context.booleanSerializerProvider. isUnknownTypeSerializer(JsonSerializer<?> ser)Helper method called to see if given serializer is considered to be something returned bySerializerProvider.getUnknownTypeSerializer(java.lang.Class<?>), that is, something for which no regular serializer was found or constructed.JsonSerializer<T>JsonSerializer. replaceDelegatee(JsonSerializer<?> delegatee)Method that can be called to try to replace serializer this serializer delegates calls to.voidSerializerProvider. setDefaultKeySerializer(JsonSerializer<Object> ks)Method that can be used to specify serializer that will be used to write JSON property names matching null keys for Java Maps (which will throw an exception if try write such property name)voidSerializerProvider. setNullKeySerializer(JsonSerializer<Object> nks)Method that can be used to specify serializer to use for serializing all non-null JSON property names, unless more specific key serializer is found (i.e.voidSerializerProvider. setNullValueSerializer(JsonSerializer<Object> nvs)Method that can be used to specify serializer that will be used to write JSON values matching Java null values instead of default one (which simply writes JSON null). -
Uses of JsonSerializer in com.fasterxml.jackson.databind.annotation
Methods in com.fasterxml.jackson.databind.annotation that return types with arguments of type JsonSerializer Modifier and Type Method Description Class<? extends JsonSerializer>contentUsing()Serializer class to use for serializing contents (elements of a Collection/array, values of Maps) of annotated property.Class<? extends JsonSerializer>keyUsing()Serializer class to use for serializing Map keys of annotated property.Class<? extends JsonSerializer>nullsUsing()Serializer class to use for serializing nulls for properties that are annotated, instead of the default null serializer.Class<? extends JsonSerializer>using()Serializer class to use for serializing associated value. -
Uses of JsonSerializer in com.fasterxml.jackson.databind.cfg
Methods in com.fasterxml.jackson.databind.cfg that return JsonSerializer Modifier and Type Method Description abstract JsonSerializer<?>HandlerInstantiator. serializerInstance(SerializationConfig config, Annotated annotated, Class<?> serClass)Method called to get an instance of serializer of specified type. -
Uses of JsonSerializer in com.fasterxml.jackson.databind.ext
Subclasses of JsonSerializer in com.fasterxml.jackson.databind.ext Modifier and Type Class Description static classCoreXMLSerializers.XMLGregorianCalendarSerializerclassDOMSerializerclassNioPathSerializerMethods in com.fasterxml.jackson.databind.ext that return JsonSerializer Modifier and Type Method Description JsonSerializer<?>CoreXMLSerializers.XMLGregorianCalendarSerializer. createContextual(SerializerProvider prov, BeanProperty property)JsonSerializer<?>CoreXMLSerializers. findSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc)JsonSerializer<?>OptionalHandlerFactory. findSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc)JsonSerializer<?>CoreXMLSerializers.XMLGregorianCalendarSerializer. getDelegatee()abstract JsonSerializer<?>Java7Handlers. getSerializerForJavaNioFilePath(Class<?> rawType)JsonSerializer<?>Java7HandlersImpl. getSerializerForJavaNioFilePath(Class<?> rawType)Constructors in com.fasterxml.jackson.databind.ext with parameters of type JsonSerializer Constructor Description XMLGregorianCalendarSerializer(JsonSerializer<?> del) -
Uses of JsonSerializer in com.fasterxml.jackson.databind.module
Fields in com.fasterxml.jackson.databind.module with type parameters of type JsonSerializer Modifier and Type Field Description protected HashMap<ClassKey,JsonSerializer<?>>SimpleSerializers. _classMappingsClass-based mappings that are used both for exact and sub-class matches.protected HashMap<ClassKey,JsonSerializer<?>>SimpleSerializers. _interfaceMappingsInterface-based matches.Methods in com.fasterxml.jackson.databind.module with parameters of type JsonSerializer Modifier and Type Method Description protected voidSimpleSerializers. _addSerializer(Class<?> cls, JsonSerializer<?> ser)<T> SimpleModuleSimpleModule. addKeySerializer(Class<? extends T> type, JsonSerializer<T> ser)SimpleModuleSimpleModule. addSerializer(JsonSerializer<?> ser)Method for adding serializer to handle type that the serializer claims to handle (seehandledType()).<T> SimpleModuleSimpleModule. addSerializer(Class<? extends T> type, JsonSerializer<T> ser)Method for adding serializer to handle values of specific type.voidSimpleSerializers. addSerializer(JsonSerializer<?> ser)Method for adding given serializer for type thathandledType()specifies (which MUST return a non-null class; and can NOT beObject, as a sanity check).<T> voidSimpleSerializers. addSerializer(Class<? extends T> type, JsonSerializer<T> ser)JsonSerializer<?>SimpleSerializers. findArraySerializer(SerializationConfig config, ArrayType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>SimpleSerializers. findCollectionLikeSerializer(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>SimpleSerializers. findCollectionSerializer(SerializationConfig config, CollectionType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>SimpleSerializers. findMapLikeSerializer(SerializationConfig config, MapLikeType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>SimpleSerializers. findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method parameters in com.fasterxml.jackson.databind.module with type arguments of type JsonSerializer Modifier and Type Method Description voidSimpleSerializers. addSerializers(List<JsonSerializer<?>> sers)Constructor parameters in com.fasterxml.jackson.databind.module with type arguments of type JsonSerializer Constructor Description SimpleModule(String name, com.fasterxml.jackson.core.Version version, List<JsonSerializer<?>> serializers)SimpleModule(String name, com.fasterxml.jackson.core.Version version, Map<Class<?>,JsonDeserializer<?>> deserializers, List<JsonSerializer<?>> serializers)SimpleSerializers(List<JsonSerializer<?>> sers) -
Uses of JsonSerializer in com.fasterxml.jackson.databind.ser
Subclasses of JsonSerializer in com.fasterxml.jackson.databind.ser Modifier and Type Class Description classBeanSerializerSerializer class that can serialize Java objects that map to JSON Object output.classContainerSerializer<T>Intermediate base class for serializers used for serializing types that contain element(s) of other types, such as arrays,Collections (Lists,Setsetc) andMaps and iterable things (Iterators).Fields in com.fasterxml.jackson.databind.ser declared as JsonSerializer Modifier and Type Field Description protected JsonSerializer<Object>BeanPropertyWriter. _nullSerializerSerializer used for writing out null values, if any: if null, null values are to be suppressed.protected JsonSerializer<Object>AnyGetterWriter. _serializerprotected JsonSerializer<Object>BeanPropertyWriter. _serializerSerializer to use for writing out the value: null if it cannot be known statically; non-null if it can.Fields in com.fasterxml.jackson.databind.ser with type parameters of type JsonSerializer Modifier and Type Field Description protected static HashMap<String,JsonSerializer<?>>BasicSerializerFactory. _concreteSince these are all JDK classes, we shouldn't have to worry about ClassLoader used to load them.protected static HashMap<String,Class<? extends JsonSerializer<?>>>BasicSerializerFactory. _concreteLazyActually it may not make much sense to eagerly instantiate all kinds of serializers: so this Map actually contains class references, not instancesMethods in com.fasterxml.jackson.databind.ser that return JsonSerializer Modifier and Type Method Description protected JsonSerializer<?>BeanSerializerFactory. _createSerializer2(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping)protected JsonSerializer<Object>BeanPropertyWriter. _findAndAddDynamic(PropertySerializerMap map, Class<?> type, SerializerProvider provider)protected JsonSerializer<Object>BasicSerializerFactory. _findContentSerializer(SerializerProvider prov, Annotated a)Helper method called to try to find whether there is an annotation in the class that indicates content ("value") serializer to use.protected JsonSerializer<Object>BasicSerializerFactory. _findKeySerializer(SerializerProvider prov, Annotated a)Helper method called to try to find whether there is an annotation in the class that indicates key serializer to use.JsonSerializer<?>BeanSerializerBuilder. build()Method called to createBeanSerializerinstance with all accumulated information.protected JsonSerializer<?>BasicSerializerFactory. buildArraySerializer(SerializerProvider prov, ArrayType type, BeanDescription beanDesc, boolean staticTyping, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Helper method that handles configuration details when constructing serializers forObject[](and subtypes, except for String).protected JsonSerializer<?>BasicSerializerFactory. buildAtomicReferenceSerializer(SerializerProvider prov, ReferenceType refType, BeanDescription beanDesc, boolean staticTyping, TypeSerializer contentTypeSerializer, JsonSerializer<Object> contentSerializer)protected JsonSerializer<?>BasicSerializerFactory. buildCollectionSerializer(SerializerProvider prov, CollectionType type, BeanDescription beanDesc, boolean staticTyping, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Helper method that handles configuration details when constructing serializers forListtypes that support efficient by-index accessprotected JsonSerializer<?>BasicSerializerFactory. buildContainerSerializer(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping)protected JsonSerializer<?>BasicSerializerFactory. buildEnumSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc)JsonSerializer<?>BasicSerializerFactory. buildEnumSetSerializer(JavaType enumType)protected JsonSerializer<?>BasicSerializerFactory. buildIterableSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc, boolean staticTyping, JavaType valueType)protected JsonSerializer<?>BasicSerializerFactory. buildIteratorSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc, boolean staticTyping, JavaType valueType)protected JsonSerializer<?>BasicSerializerFactory. buildMapEntrySerializer(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping, JavaType keyType, JavaType valueType)protected JsonSerializer<?>BasicSerializerFactory. buildMapSerializer(SerializerProvider prov, MapType type, BeanDescription beanDesc, boolean staticTyping, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Helper method that handles configuration details when constructing serializers forMaptypes.protected JsonSerializer<Object>BeanSerializerFactory. constructBeanOrAddOnSerializer(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping)Method called to construct serializer for serializing specified bean type if (but only if, as of 2.10), at least one property is found.protected JsonSerializer<Object>BeanSerializerFactory. constructBeanSerializer(SerializerProvider prov, BeanDescription beanDesc)Deprecated.JsonSerializer<?>ContextualSerializer. createContextual(SerializerProvider prov, BeanProperty property)Method called to see if a different (or differently configured) serializer is needed to serialize values of specified property.JsonSerializer<Object>BasicSerializerFactory. createKeySerializer(SerializationConfig config, JavaType keyType, JsonSerializer<Object> defaultImpl)abstract JsonSerializer<Object>SerializerFactory. createKeySerializer(SerializationConfig config, JavaType type, JsonSerializer<Object> defaultImpl)Method called to create serializer to use for serializing JSON property names (which must be output asJsonToken.FIELD_NAME) for Map that has specified declared key type, and is for specified property (or, if property is null, as root value)abstract JsonSerializer<Object>BasicSerializerFactory. createSerializer(SerializerProvider prov, JavaType type)JsonSerializer<Object>BeanSerializerFactory. createSerializer(SerializerProvider prov, JavaType origType)Main serializer constructor method.abstract JsonSerializer<Object>SerializerFactory. createSerializer(SerializerProvider prov, JavaType baseType)Method called to create (or, for immutable serializers, reuse) a serializer for given type.JsonSerializer<?>Serializers.Base. findArraySerializer(SerializationConfig config, ArrayType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findArraySerializer(SerializationConfig config, ArrayType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specified array type.JsonSerializer<Object>BeanSerializerFactory. findBeanOrAddOnSerializer(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping)Method that will try to construct aBeanSerializerfor given class if at least one property is found, OR, if not, one of add-on types.JsonSerializer<Object>BeanSerializerFactory. findBeanSerializer(SerializerProvider prov, JavaType type, BeanDescription beanDesc)Deprecated.JsonSerializer<?>Serializers.Base. findCollectionLikeSerializer(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findCollectionLikeSerializer(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specified "Collection-like" type (type that acts likeCollection, but does not implement it).JsonSerializer<?>Serializers.Base. findCollectionSerializer(SerializationConfig config, CollectionType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findCollectionSerializer(SerializationConfig config, CollectionType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specifiedCollectiontype.protected JsonSerializer<?>BasicSerializerFactory. findConvertingSerializer(SerializerProvider prov, Annotated a, JsonSerializer<?> ser)Helper method that will check whether given annotated entity (usually class, but may also be a property accessor) indicates that aConverteris to be used; and if so, to construct and return suitable serializer for it.JsonSerializer<?>Serializers.Base. findMapLikeSerializer(SerializationConfig config, MapLikeType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findMapLikeSerializer(SerializationConfig config, MapLikeType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specified "Map-like" type (type that acts likeMap, but does not implement it).JsonSerializer<?>Serializers.Base. findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specifiedMaptype.protected JsonSerializer<?>BasicSerializerFactory. findOptionalStdSerializer(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping)Overridable method called after checking all other types.JsonSerializer<?>BasicSerializerFactory. findReferenceSerializer(SerializerProvider prov, ReferenceType refType, BeanDescription beanDesc, boolean staticTyping)JsonSerializer<?>Serializers.Base. findReferenceSerializer(SerializationConfig config, ReferenceType type, BeanDescription beanDesc, TypeSerializer contentTypeSerializer, JsonSerializer<Object> contentValueSerializer)JsonSerializer<?>Serializers. findReferenceSerializer(SerializationConfig config, ReferenceType type, BeanDescription beanDesc, TypeSerializer contentTypeSerializer, JsonSerializer<Object> contentValueSerializer)Method called by serialization framework first time a serializer is needed for givenReferenceTypeJsonSerializer<?>Serializers.Base. findSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc)JsonSerializer<?>Serializers. findSerializer(SerializationConfig config, JavaType type, BeanDescription beanDesc)Method called by serialization framework first time a serializer is needed for specified type, which is not of a container or reference type (for which other methods are called).protected JsonSerializer<?>BasicSerializerFactory. findSerializerByAddonType(SerializationConfig config, JavaType javaType, BeanDescription beanDesc, boolean staticTyping)Reflection-based serialized find method, which checks if given class implements one of recognized "add-on" interfaces.protected JsonSerializer<?>BasicSerializerFactory. findSerializerByAnnotations(SerializerProvider prov, JavaType type, BeanDescription beanDesc)Method called to see if one of primary per-class annotations (or related, like implementing ofJsonSerializable) determines the serializer to use.protected JsonSerializer<?>BasicSerializerFactory. findSerializerByLookup(JavaType type, SerializationConfig config, BeanDescription beanDesc, boolean staticTyping)Method that will use fast lookup (and identity comparison) methods to see if we know serializer to use for given type.protected JsonSerializer<?>BasicSerializerFactory. findSerializerByPrimaryType(SerializerProvider prov, JavaType type, BeanDescription beanDesc, boolean staticTyping)Method for checking if we can determine serializer to use based on set of known primary types, checking for set of known base types (exact matches having been compared against withfindSerializerByLookup).protected JsonSerializer<Object>BasicSerializerFactory. findSerializerFromAnnotation(SerializerProvider prov, Annotated a)Helper method called to check if a class or method has an annotation (@link com.fasterxml.jackson.databind.annotation.JsonSerialize#using) that tells the class to use for serialization.abstract JsonSerializer<?>ContainerSerializer. getContentSerializer()Accessor for serializer used for serializing contents (List and array elements, Map values etc) of the container for which this serializer is used, if it is known statically.JsonSerializer<Object>BeanPropertyWriter. getSerializer()JsonSerializer<?>BeanSerializerModifier. modifyArraySerializer(SerializationConfig config, ArrayType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)Method called byDeserializerFactoryafter it has constructed the standard serializer for givenArrayTypeto make it possible to either replace or augment this serializer with additional functionality.JsonSerializer<?>BeanSerializerModifier. modifyCollectionLikeSerializer(SerializationConfig config, CollectionLikeType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifyCollectionSerializer(SerializationConfig config, CollectionType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifyEnumSerializer(SerializationConfig config, JavaType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifyKeySerializer(SerializationConfig config, JavaType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)Method called byDeserializerFactoryafter it has constructed the default key serializer to use for serializingMapkeys of given type.JsonSerializer<?>BeanSerializerModifier. modifyMapLikeSerializer(SerializationConfig config, MapLikeType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifyMapSerializer(SerializationConfig config, MapType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifySerializer(SerializationConfig config, BeanDescription beanDesc, JsonSerializer<?> serializer)Method called byBeanSerializerFactoryafter constructing default bean serializer instance with properties collected and ordered earlier.JsonSerializer<Object>DefaultSerializerProvider. serializerInstance(Annotated annotated, Object serDef)JsonSerializer<Object>SerializerCache. typedValueSerializer(JavaType type)JsonSerializer<Object>SerializerCache. typedValueSerializer(Class<?> cls)JsonSerializer<Object>SerializerCache. untypedValueSerializer(JavaType type)JsonSerializer<Object>SerializerCache. untypedValueSerializer(Class<?> type)Method that checks if the shared (and hence, synchronized) lookup Map might have untyped serializer for given type.JsonSerializer<Object>BeanSerializer. unwrappingSerializer(NameTransformer unwrapper)Methods in com.fasterxml.jackson.databind.ser with parameters of type JsonSerializer Modifier and Type Method Description protected booleanBeanPropertyWriter. _handleSelfReference(Object bean, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider prov, JsonSerializer<?> ser)Method called to handle a direct self-reference through this property.voidSerializerCache. addAndResolveNonTypedSerializer(JavaType type, JsonSerializer<Object> ser, SerializerProvider provider)voidSerializerCache. addAndResolveNonTypedSerializer(Class<?> rawType, JavaType fullType, JsonSerializer<Object> ser, SerializerProvider provider)Another alternative that will cover both access via raw type and matching fully resolved type, in one fell swoop.voidSerializerCache. addAndResolveNonTypedSerializer(Class<?> type, JsonSerializer<Object> ser, SerializerProvider provider)voidSerializerCache. addTypedSerializer(JavaType type, JsonSerializer<Object> ser)Method called if none of lookups succeeded, and caller had to construct a serializer.voidSerializerCache. addTypedSerializer(Class<?> cls, JsonSerializer<Object> ser)voidBeanPropertyWriter. assignNullSerializer(JsonSerializer<Object> nullSer)Method called to assign null value serializer for propertyvoidBeanPropertyWriter. assignSerializer(JsonSerializer<Object> ser)Method called to assign value serializer for propertyprotected JsonSerializer<?>BasicSerializerFactory. buildArraySerializer(SerializerProvider prov, ArrayType type, BeanDescription beanDesc, boolean staticTyping, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Helper method that handles configuration details when constructing serializers forObject[](and subtypes, except for String).protected JsonSerializer<?>BasicSerializerFactory. buildAtomicReferenceSerializer(SerializerProvider prov, ReferenceType refType, BeanDescription beanDesc, boolean staticTyping, TypeSerializer contentTypeSerializer, JsonSerializer<Object> contentSerializer)ContainerSerializer<?>BasicSerializerFactory. buildCollectionSerializer(JavaType elemType, boolean staticTyping, TypeSerializer vts, JsonSerializer<Object> valueSerializer)protected JsonSerializer<?>BasicSerializerFactory. buildCollectionSerializer(SerializerProvider prov, CollectionType type, BeanDescription beanDesc, boolean staticTyping, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Helper method that handles configuration details when constructing serializers forListtypes that support efficient by-index accessContainerSerializer<?>BasicSerializerFactory. buildIndexedListSerializer(JavaType elemType, boolean staticTyping, TypeSerializer vts, JsonSerializer<Object> valueSerializer)protected JsonSerializer<?>BasicSerializerFactory. buildMapSerializer(SerializerProvider prov, MapType type, BeanDescription beanDesc, boolean staticTyping, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Helper method that handles configuration details when constructing serializers forMaptypes.protected BeanPropertyWriterPropertyBuilder. buildWriter(SerializerProvider prov, BeanPropertyDefinition propDef, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, TypeSerializer contentTypeSer, AnnotatedMember am, boolean defaultUseStaticTyping)JsonSerializer<Object>BasicSerializerFactory. createKeySerializer(SerializationConfig config, JavaType keyType, JsonSerializer<Object> defaultImpl)abstract JsonSerializer<Object>SerializerFactory. createKeySerializer(SerializationConfig config, JavaType type, JsonSerializer<Object> defaultImpl)Method called to create serializer to use for serializing JSON property names (which must be output asJsonToken.FIELD_NAME) for Map that has specified declared key type, and is for specified property (or, if property is null, as root value)JsonSerializer<?>Serializers.Base. findArraySerializer(SerializationConfig config, ArrayType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findArraySerializer(SerializationConfig config, ArrayType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specified array type.JsonSerializer<?>Serializers.Base. findCollectionLikeSerializer(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findCollectionLikeSerializer(SerializationConfig config, CollectionLikeType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specified "Collection-like" type (type that acts likeCollection, but does not implement it).JsonSerializer<?>Serializers.Base. findCollectionSerializer(SerializationConfig config, CollectionType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findCollectionSerializer(SerializationConfig config, CollectionType type, BeanDescription beanDesc, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specifiedCollectiontype.protected JsonSerializer<?>BasicSerializerFactory. findConvertingSerializer(SerializerProvider prov, Annotated a, JsonSerializer<?> ser)Helper method that will check whether given annotated entity (usually class, but may also be a property accessor) indicates that aConverteris to be used; and if so, to construct and return suitable serializer for it.JsonSerializer<?>Serializers.Base. findMapLikeSerializer(SerializationConfig config, MapLikeType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findMapLikeSerializer(SerializationConfig config, MapLikeType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specified "Map-like" type (type that acts likeMap, but does not implement it).JsonSerializer<?>Serializers.Base. findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)JsonSerializer<?>Serializers. findMapSerializer(SerializationConfig config, MapType type, BeanDescription beanDesc, JsonSerializer<Object> keySerializer, TypeSerializer elementTypeSerializer, JsonSerializer<Object> elementValueSerializer)Method called by serialization framework first time a serializer is needed for specifiedMaptype.JsonSerializer<?>Serializers.Base. findReferenceSerializer(SerializationConfig config, ReferenceType type, BeanDescription beanDesc, TypeSerializer contentTypeSerializer, JsonSerializer<Object> contentValueSerializer)JsonSerializer<?>Serializers. findReferenceSerializer(SerializationConfig config, ReferenceType type, BeanDescription beanDesc, TypeSerializer contentTypeSerializer, JsonSerializer<Object> contentValueSerializer)Method called by serialization framework first time a serializer is needed for givenReferenceTypeJsonSerializer<?>BeanSerializerModifier. modifyArraySerializer(SerializationConfig config, ArrayType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)Method called byDeserializerFactoryafter it has constructed the standard serializer for givenArrayTypeto make it possible to either replace or augment this serializer with additional functionality.JsonSerializer<?>BeanSerializerModifier. modifyCollectionLikeSerializer(SerializationConfig config, CollectionLikeType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifyCollectionSerializer(SerializationConfig config, CollectionType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifyEnumSerializer(SerializationConfig config, JavaType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifyKeySerializer(SerializationConfig config, JavaType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)Method called byDeserializerFactoryafter it has constructed the default key serializer to use for serializingMapkeys of given type.JsonSerializer<?>BeanSerializerModifier. modifyMapLikeSerializer(SerializationConfig config, MapLikeType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifyMapSerializer(SerializationConfig config, MapType valueType, BeanDescription beanDesc, JsonSerializer<?> serializer)JsonSerializer<?>BeanSerializerModifier. modifySerializer(SerializationConfig config, BeanDescription beanDesc, JsonSerializer<?> serializer)Method called byBeanSerializerFactoryafter constructing default bean serializer instance with properties collected and ordered earlier.voidDefaultSerializerProvider. serializePolymorphic(com.fasterxml.jackson.core.JsonGenerator gen, Object value, JavaType rootType, JsonSerializer<Object> valueSer, TypeSerializer typeSer)Alternate serialization call used for polymorphic types, whenTypeSerializeris already known, but the actual serializer may or may not be.voidDefaultSerializerProvider. serializeValue(com.fasterxml.jackson.core.JsonGenerator gen, Object value, JavaType rootType, JsonSerializer<Object> ser)The method to be called byObjectWriterfor serializing given value (assumed to be of specified root type, instead of runtime type of value), when it may know specificJsonSerializerto use.Constructors in com.fasterxml.jackson.databind.ser with parameters of type JsonSerializer Constructor Description AnyGetterWriter(BeanProperty property, AnnotatedMember accessor, JsonSerializer<?> serializer)BeanPropertyWriter(BeanPropertyDefinition propDef, AnnotatedMember member, Annotations contextAnnotations, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, JavaType serType, boolean suppressNulls, Object suppressableValue)Deprecated.BeanPropertyWriter(BeanPropertyDefinition propDef, AnnotatedMember member, Annotations contextAnnotations, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, JavaType serType, boolean suppressNulls, Object suppressableValue, Class<?>[] includeInViews)VirtualBeanPropertyWriter(BeanPropertyDefinition propDef, Annotations contextAnnotations, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, JavaType serType, com.fasterxml.jackson.annotation.JsonInclude.Value inclusion)Deprecated.VirtualBeanPropertyWriter(BeanPropertyDefinition propDef, Annotations contextAnnotations, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, JavaType serType, com.fasterxml.jackson.annotation.JsonInclude.Value inclusion, Class<?>[] includeInViews)Pass-through constructor that may be used by sub-classes that want full control over implementation. -
Uses of JsonSerializer in com.fasterxml.jackson.databind.ser.impl
Subclasses of JsonSerializer in com.fasterxml.jackson.databind.ser.impl Modifier and Type Class Description classBeanAsArraySerializerSpecialized POJO serializer that differs fromBeanSerializerin that instead of producing a JSON Object it will output a JSON Array, omitting field names, and serializing values in specified serialization order.classFailingSerializerSpecial bogus "serializer" that will throwJsonMappingExceptionif itsFailingSerializer.serialize(java.lang.Object, com.fasterxml.jackson.core.JsonGenerator, com.fasterxml.jackson.databind.SerializerProvider)gets invoked.classIndexedListSerializerThis is an optimized serializer for Lists that can be efficiently traversed by index (as opposed to others, such asLinkedListthat cannot}.classIndexedStringListSerializerEfficient implement for serializingLists that contains Strings and are random-accessible.classIteratorSerializerclassMapEntrySerializerclassStringArraySerializerStandard serializer used forString[]values.classStringCollectionSerializerEfficient implement for serializingCollections that contain Strings.classTypeWrappedSerializerSimple serializer that will call configured type serializer, passing in configured data serializer, and exposing it all as a simple serializer.classUnknownSerializerclassUnwrappingBeanSerializerFields in com.fasterxml.jackson.databind.ser.impl declared as JsonSerializer Modifier and Type Field Description protected JsonSerializer<Object>StringArraySerializer. _elementSerializerValue serializer to use, if it's not the standard one (if it is we can optimize serialization a lot)protected JsonSerializer<Object>MapEntrySerializer. _keySerializerKey serializer to use, if it can be statically determinedprotected JsonSerializer<Object>TypeWrappedSerializer. _serializerprotected JsonSerializer<Object>MapEntrySerializer. _valueSerializerValue serializer to use, if it can be statically determinedJsonSerializer<Object>ObjectIdWriter. serializerSerializer used for serializing id values.JsonSerializer<Object>PropertySerializerMap.SerializerAndMapResult. serializerMethods in com.fasterxml.jackson.databind.ser.impl with parameters of type JsonSerializer Modifier and Type Method Description PropertySerializerMap.SerializerAndMapResultPropertySerializerMap. addSerializer(JavaType type, JsonSerializer<Object> serializer)PropertySerializerMap.SerializerAndMapResultPropertySerializerMap. addSerializer(Class<?> type, JsonSerializer<Object> serializer)Method that can be used to 'register' a serializer that caller has resolved without help of this map.voidUnwrappingBeanPropertyWriter. assignSerializer(JsonSerializer<Object> ser)abstract PropertySerializerMapPropertySerializerMap. newWith(Class<?> type, JsonSerializer<Object> serializer)voidIndexedListSerializer. serializeContentsUsing(List<?> value, com.fasterxml.jackson.core.JsonGenerator jgen, SerializerProvider provider, JsonSerializer<Object> ser)IndexedListSerializerIndexedListSerializer. withResolved(BeanProperty property, TypeSerializer vts, JsonSerializer<?> elementSerializer, Boolean unwrapSingle)IteratorSerializerIteratorSerializer. withResolved(BeanProperty property, TypeSerializer vts, JsonSerializer<?> elementSerializer, Boolean unwrapSingle)MapEntrySerializerMapEntrySerializer. withResolved(BeanProperty property, JsonSerializer<?> keySerializer, JsonSerializer<?> valueSerializer, Object suppressableValue, boolean suppressNulls)ObjectIdWriterObjectIdWriter. withSerializer(JsonSerializer<?> ser)Method parameters in com.fasterxml.jackson.databind.ser.impl with type arguments of type JsonSerializer Modifier and Type Method Description static ReadOnlyClassToSerializerMapReadOnlyClassToSerializerMap. from(HashMap<TypeKey,JsonSerializer<Object>> src)Factory method for constructing an instance.Constructor parameters in com.fasterxml.jackson.databind.ser.impl with type arguments of type JsonSerializer Constructor Description ReadOnlyClassToSerializerMap(Map<TypeKey,JsonSerializer<Object>> serializers) -
Uses of JsonSerializer in com.fasterxml.jackson.databind.ser.std
Subclasses of JsonSerializer in com.fasterxml.jackson.databind.ser.std Modifier and Type Class Description classArraySerializerBase<T>Intermediate base class for serializers used for various Java arrays.classAsArraySerializerBase<T>Base class for serializers that will output contents as JSON arrays; typically serializers used forCollectionand array types.classAtomicReferenceSerializerclassBeanSerializerBaseBase class both for the standard bean serializer, and couple of variants that only differ in small details.classBooleanSerializerSerializer used for primitive boolean, as well as java.util.Boolean wrapper type.classByteArraySerializerUnlike other integral number array serializers, we do not just print out byte values as numbers.classByteBufferSerializerclassCalendarSerializerStandard serializer forCalendar.classClassSerializerAlso: default bean access will not do much good with Class.class.classCollectionSerializerFallback serializer for cases where Collection is not known to be of type for which more specializer serializer exists (such as index-accessible List).classDateSerializerFor efficiency, we will serialize Dates as longs, instead of potentially more readable Strings.classDateTimeSerializerBase<T>classEnumSerializerStandard serializer used forEnumtypes.classEnumSetSerializerclassFileSerializerFor now, File objects get serialized by just outputting absolute (but not canonical) name as String valueclassInetAddressSerializerSimple serializer forInetAddress.classInetSocketAddressSerializerSimple serializer forInetSocketAddress.classIterableSerializerclassJsonValueSerializerSerializer class that can serialize Object that have aJsonValueannotation to indicate that serialization should be done by calling the method annotated, and serializing result it returns.classMapSerializerStandard serializer implementation for serializing {link java.util.Map} types.classNonTypedScalarSerializerBase<T>Deprecated.classNullSerializerThis is a simple dummy serializer that will just output literal JSON null value whenever serialization is requested.classNumberSerializerAs a fallback, we may need to use this serializer for other types ofNumbers: both custom types and "big" numbers likeBigIntegerandBigDecimal.static classNumberSerializers.Base<T>Shared base class for actual primitive/wrapper number serializers.static classNumberSerializers.DoubleSerializerThis is the special serializer for regularDoubles (and primitive doubles)static classNumberSerializers.FloatSerializerstatic classNumberSerializers.IntegerSerializerThis is the special serializer for regularIntegers (and primitive ints)static classNumberSerializers.IntLikeSerializerSimilar toNumberSerializers.IntegerSerializer, but will not cast to Integer: instead, cast is toNumber, and conversion is by callingNumber.intValue().static classNumberSerializers.LongSerializerstatic classNumberSerializers.ShortSerializerclassObjectArraySerializerGeneric serializer for Object arrays (Object[]).classRawSerializer<T>This is a simple dummy serializer that will just output raw values by calling toString() on value to serialize.classReferenceTypeSerializer<T>Base implementation for values ofReferenceType.classSerializableSerializerGeneric handler for types that implementJsonSerializable.classSqlDateSerializerCompared to regularDateserialization, we do use String representation here.classSqlTimeSerializerclassStaticListSerializerBase<T extends Collection<?>>Intermediate base class for Lists, Collections and Arrays that contain static (non-dynamic) value types.static classStdArraySerializers.BooleanArraySerializerstatic classStdArraySerializers.CharArraySerializerCharacter arrays are different from other integral number arrays in that they are most likely to be textual data, and should be written as Strings, not arrays of entries.static classStdArraySerializers.DoubleArraySerializerstatic classStdArraySerializers.FloatArraySerializerstatic classStdArraySerializers.IntArraySerializerstatic classStdArraySerializers.LongArraySerializerstatic classStdArraySerializers.ShortArraySerializerprotected static classStdArraySerializers.TypedPrimitiveArraySerializer<T>Intermediate base class used for cases where we may add type information (excludes boolean/int/double arrays).classStdDelegatingSerializerSerializer implementation where given Java type is first converted to an intermediate "delegate type" (using a configuredConverter, and then this delegate value is serialized by Jackson.static classStdJdkSerializers.AtomicBooleanSerializerstatic classStdJdkSerializers.AtomicIntegerSerializerstatic classStdJdkSerializers.AtomicLongSerializerclassStdKeySerializerDeprecated.Since 2.8, useStdKeySerializers.Defaultinstead.static classStdKeySerializers.DefaultThis is a "chameleon" style multi-type key serializer for simple standard JDK types.static classStdKeySerializers.DynamicKey serializer used when key type is not known statically, and actual key serializer needs to be dynamically located.static classStdKeySerializers.EnumKeySerializerSpecialized instance to use for Enum keys, as per [databind#1322]static classStdKeySerializers.StringKeySerializerSimple and fast key serializer when keys are Strings.classStdScalarSerializer<T>classStdSerializer<T>Base class used by all standard serializers, and can also be used for custom serializers (in fact, this is the recommended base class to use).classStringSerializerThis is the special serializer for regularStrings.classTimeZoneSerializerclassTokenBufferSerializerWe also want to directly support serialization ofTokenBuffer; and since it is part of core package, it cannot implementJsonSerializable(which is only included in the mapper package)classToStringSerializerSimple general purpose serializer, useful for any type for whichObject.toString()returns the desired JSON value.classToStringSerializerBaseIntermediate base class that serves as base for standardToStringSerializeras well as for custom subtypes that want to add processing for converting from value to output into itsStringrepresentation (whereas standard version simply calls value object'stoString()method).classUUIDSerializerSpecializedJsonSerializerto outputUUIDs.Fields in com.fasterxml.jackson.databind.ser.std declared as JsonSerializer Modifier and Type Field Description protected JsonSerializer<Object>StdDelegatingSerializer. _delegateSerializerUnderlying serializer for typeT.protected JsonSerializer<Object>AsArraySerializerBase. _elementSerializerValue serializer to use, if it can be statically determinedprotected JsonSerializer<Object>ObjectArraySerializer. _elementSerializerValue serializer to use, if it can be statically determined.protected JsonSerializer<Object>MapProperty. _keySerializerprotected JsonSerializer<Object>MapSerializer. _keySerializerKey serializer to use, if it can be statically determinedprotected JsonSerializer<Object>JsonValueSerializer. _valueSerializerprotected JsonSerializer<Object>MapProperty. _valueSerializerprotected JsonSerializer<Object>MapSerializer. _valueSerializerValue serializer to use, if it can be statically determinedprotected JsonSerializer<Object>ReferenceTypeSerializer. _valueSerializerSerializer for content values, if statically known.protected static JsonSerializer<Object>StdKeySerializers. DEFAULT_KEY_SERIALIZERprotected static JsonSerializer<Object>StdKeySerializers. DEFAULT_STRING_SERIALIZERFields in com.fasterxml.jackson.databind.ser.std with type parameters of type JsonSerializer Modifier and Type Field Description protected static HashMap<String,JsonSerializer<?>>StdArraySerializers. _arraySerializersMethods in com.fasterxml.jackson.databind.ser.std that return JsonSerializer Modifier and Type Method Description protected JsonSerializer<Object>AsArraySerializerBase. _findAndAddDynamic(PropertySerializerMap map, JavaType type, SerializerProvider provider)protected JsonSerializer<Object>AsArraySerializerBase. _findAndAddDynamic(PropertySerializerMap map, Class<?> type, SerializerProvider provider)protected JsonSerializer<Object>MapSerializer. _findAndAddDynamic(PropertySerializerMap map, JavaType type, SerializerProvider provider)protected JsonSerializer<Object>MapSerializer. _findAndAddDynamic(PropertySerializerMap map, Class<?> type, SerializerProvider provider)protected JsonSerializer<Object>ObjectArraySerializer. _findAndAddDynamic(PropertySerializerMap map, JavaType type, SerializerProvider provider)protected JsonSerializer<Object>ObjectArraySerializer. _findAndAddDynamic(PropertySerializerMap map, Class<?> type, SerializerProvider provider)protected JsonSerializer<Object>StdKeySerializers.Dynamic. _findAndAddDynamic(PropertySerializerMap map, Class<?> type, SerializerProvider provider)protected JsonSerializer<Object>StdDelegatingSerializer. _findSerializer(Object value, SerializerProvider serializers)Helper method used for locating serializer to use in dynamic use case, where actual type value gets converted to is not specified beyond basicObject, and where serializer needs to be located dynamically based on actual value type.abstract JsonSerializer<?>ArraySerializerBase. _withResolved(BeanProperty prop, Boolean unwrapSingle)JsonSerializer<?>ObjectArraySerializer. _withResolved(BeanProperty prop, Boolean unwrapSingle)abstract JsonSerializer<?>StaticListSerializerBase. _withResolved(BeanProperty prop, Boolean unwrapSingle)JsonSerializer<?>StdArraySerializers.BooleanArraySerializer. _withResolved(BeanProperty prop, Boolean unwrapSingle)JsonSerializer<?>StdArraySerializers.DoubleArraySerializer. _withResolved(BeanProperty prop, Boolean unwrapSingle)JsonSerializer<?>StdArraySerializers.FloatArraySerializer. _withResolved(BeanProperty prop, Boolean unwrapSingle)JsonSerializer<?>StdArraySerializers.IntArraySerializer. _withResolved(BeanProperty prop, Boolean unwrapSingle)JsonSerializer<?>StdArraySerializers.LongArraySerializer. _withResolved(BeanProperty prop, Boolean unwrapSingle)JsonSerializer<?>StdArraySerializers.ShortArraySerializer. _withResolved(BeanProperty prop, Boolean unwrapSingle)static JsonSerializer<?>NumberSerializer. bigDecimalAsStringSerializer()JsonSerializer<?>ArraySerializerBase. createContextual(SerializerProvider serializers, BeanProperty property)JsonSerializer<?>AsArraySerializerBase. createContextual(SerializerProvider serializers, BeanProperty property)This method is needed to resolve contextual annotations like per-property overrides, as well as do recursive call tocreateContextualof content serializer, if known statically.JsonSerializer<?>BeanSerializerBase. createContextual(SerializerProvider provider, BeanProperty property)JsonSerializer<?>BooleanSerializer. createContextual(SerializerProvider serializers, BeanProperty property)JsonSerializer<?>DateTimeSerializerBase. createContextual(SerializerProvider serializers, BeanProperty property)JsonSerializer<?>EnumSerializer. createContextual(SerializerProvider serializers, BeanProperty property)To support some level of per-property configuration, we will need to make things contextual.JsonSerializer<?>InetAddressSerializer. createContextual(SerializerProvider serializers, BeanProperty property)JsonSerializer<?>JsonValueSerializer. createContextual(SerializerProvider provider, BeanProperty property)We can try to find the actual serializer for value, if we can statically figure out what the result type must be.JsonSerializer<?>MapSerializer. createContextual(SerializerProvider provider, BeanProperty property)JsonSerializer<?>NumberSerializer. createContextual(SerializerProvider prov, BeanProperty property)JsonSerializer<?>NumberSerializers.Base. createContextual(SerializerProvider prov, BeanProperty property)JsonSerializer<?>ObjectArraySerializer. createContextual(SerializerProvider serializers, BeanProperty property)JsonSerializer<?>ReferenceTypeSerializer. createContextual(SerializerProvider provider, BeanProperty property)JsonSerializer<?>StaticListSerializerBase. createContextual(SerializerProvider serializers, BeanProperty property)JsonSerializer<?>StdDelegatingSerializer. createContextual(SerializerProvider provider, BeanProperty property)protected JsonSerializer<?>StdSerializer. findAnnotatedContentSerializer(SerializerProvider serializers, BeanProperty property)Convenience method for finding out possibly configured content value serializer.protected JsonSerializer<?>StdSerializer. findContextualConvertingSerializer(SerializerProvider provider, BeanProperty property, JsonSerializer<?> existingSerializer)Helper method that can be used to see if specified property has annotation indicating that a converter is to be used for contained values (contents of structured types; array/List/Map values)protected JsonSerializer<?>StdSerializer. findConvertingContentSerializer(SerializerProvider provider, BeanProperty prop, JsonSerializer<?> existingSerializer)protected JsonSerializer<Object>BeanSerializerBase. findConvertingSerializer(SerializerProvider provider, BeanPropertyWriter prop)Helper method that can be used to see if specified property is annotated to indicate use of a converter for property value (in case of container types, it is container type itself, not key or content type).static JsonSerializer<?>StdArraySerializers. findStandardImpl(Class<?> cls)Accessor for checking to see if there is a standard serializer for given primitive value type.JsonSerializer<?>AsArraySerializerBase. getContentSerializer()JsonSerializer<?>MapSerializer. getContentSerializer()JsonSerializer<?>ObjectArraySerializer. getContentSerializer()JsonSerializer<?>StdArraySerializers.BooleanArraySerializer. getContentSerializer()JsonSerializer<?>StdArraySerializers.DoubleArraySerializer. getContentSerializer()JsonSerializer<?>StdArraySerializers.FloatArraySerializer. getContentSerializer()JsonSerializer<?>StdArraySerializers.IntArraySerializer. getContentSerializer()JsonSerializer<?>StdArraySerializers.LongArraySerializer. getContentSerializer()JsonSerializer<?>StdArraySerializers.ShortArraySerializer. getContentSerializer()static JsonSerializer<Object>StdKeySerializers. getDefault()Deprecated.since 2.7JsonSerializer<?>StdDelegatingSerializer. getDelegatee()static JsonSerializer<Object>StdKeySerializers. getFallbackKeySerializer(SerializationConfig config, Class<?> rawKeyType)Method called if no specified key serializer was located; will return a "default" key serializer.JsonSerializer<?>MapSerializer. getKeySerializer()Accessor for currently assigned key serializer.static JsonSerializer<Object>StdKeySerializers. getStdKeySerializer(SerializationConfig config, Class<?> rawKeyType, boolean useDefault)JsonSerializer<T>ReferenceTypeSerializer. unwrappingSerializer(NameTransformer transformer)Methods in com.fasterxml.jackson.databind.ser.std with parameters of type JsonSerializer Modifier and Type Method Description static MapSerializerMapSerializer. construct(String[] ignoredList, JavaType mapType, boolean staticValueType, TypeSerializer vts, JsonSerializer<Object> keySerializer, JsonSerializer<Object> valueSerializer, Object filterId)Deprecated.Since 2.8 use the other overloadstatic MapSerializerMapSerializer. construct(Set<String> ignoredEntries, JavaType mapType, boolean staticValueType, TypeSerializer vts, JsonSerializer<Object> keySerializer, JsonSerializer<Object> valueSerializer, Object filterId)protected JsonSerializer<?>StdSerializer. findContextualConvertingSerializer(SerializerProvider provider, BeanProperty property, JsonSerializer<?> existingSerializer)Helper method that can be used to see if specified property has annotation indicating that a converter is to be used for contained values (contents of structured types; array/List/Map values)protected JsonSerializer<?>StdSerializer. findConvertingContentSerializer(SerializerProvider provider, BeanProperty prop, JsonSerializer<?> existingSerializer)protected booleanStdSerializer. isDefaultSerializer(JsonSerializer<?> serializer)Method that can be called to determine if given serializer is the default serializer Jackson uses; as opposed to a custom serializer installed by a module or calling application.protected booleanJsonValueSerializer. isNaturalTypeWithStdHandling(Class<?> rawType, JsonSerializer<?> ser)voidMapProperty. reset(Object key, JsonSerializer<Object> keySer, JsonSerializer<Object> valueSer)Deprecated.voidMapProperty. reset(Object key, Object value, JsonSerializer<Object> keySer, JsonSerializer<Object> valueSer)Initialization method that needs to be called before passing property to filter.voidCollectionSerializer. serializeContentsUsing(Collection<?> value, com.fasterxml.jackson.core.JsonGenerator g, SerializerProvider provider, JsonSerializer<Object> ser)voidObjectArraySerializer. serializeContentsUsing(Object[] value, com.fasterxml.jackson.core.JsonGenerator jgen, SerializerProvider provider, JsonSerializer<Object> ser)voidMapSerializer. serializeFieldsUsing(Map<?,?> value, com.fasterxml.jackson.core.JsonGenerator gen, SerializerProvider provider, JsonSerializer<Object> ser)Method called to serialize fields, when the value type is statically known, so that value serializer is passed and does not need to be fetched from provider.protected voidStdSerializer. visitArrayFormat(JsonFormatVisitorWrapper visitor, JavaType typeHint, JsonSerializer<?> itemSerializer, JavaType itemType)protected StdDelegatingSerializerStdDelegatingSerializer. withDelegate(Converter<Object,?> converter, JavaType delegateType, JsonSerializer<?> delegateSerializer)Method used for creating resolved contextual instances.AsArraySerializerBase<T>AsArraySerializerBase. withResolved(BeanProperty property, TypeSerializer vts, JsonSerializer<?> elementSerializer)Deprecated.since 2.6: use the overloaded method that takes 'unwrapSingle'abstract AsArraySerializerBase<T>AsArraySerializerBase. withResolved(BeanProperty property, TypeSerializer vts, JsonSerializer<?> elementSerializer, Boolean unwrapSingle)protected ReferenceTypeSerializer<AtomicReference<?>>AtomicReferenceSerializer. withResolved(BeanProperty prop, TypeSerializer vts, JsonSerializer<?> valueSer, NameTransformer unwrapper)CollectionSerializerCollectionSerializer. withResolved(BeanProperty property, TypeSerializer vts, JsonSerializer<?> elementSerializer, Boolean unwrapSingle)EnumSetSerializerEnumSetSerializer. withResolved(BeanProperty property, TypeSerializer vts, JsonSerializer<?> elementSerializer, Boolean unwrapSingle)IterableSerializerIterableSerializer. withResolved(BeanProperty property, TypeSerializer vts, JsonSerializer<?> elementSerializer, Boolean unwrapSingle)JsonValueSerializerJsonValueSerializer. withResolved(BeanProperty property, JsonSerializer<?> ser, boolean forceTypeInfo)MapSerializerMapSerializer. withResolved(BeanProperty property, JsonSerializer<?> keySerializer, JsonSerializer<?> valueSerializer, Set<String> ignored, boolean sortKeys)ObjectArraySerializerObjectArraySerializer. withResolved(BeanProperty prop, TypeSerializer vts, JsonSerializer<?> ser, Boolean unwrapSingle)protected abstract ReferenceTypeSerializer<T>ReferenceTypeSerializer. withResolved(BeanProperty prop, TypeSerializer vts, JsonSerializer<?> valueSer, NameTransformer unwrapper)Mutant factory method called when changes are needed; should construct newly configured instance with new values as indicated.Method parameters in com.fasterxml.jackson.databind.ser.std with type arguments of type JsonSerializer Modifier and Type Method Description static voidNumberSerializers. addAll(Map<String,JsonSerializer<?>> allDeserializers)Constructors in com.fasterxml.jackson.databind.ser.std with parameters of type JsonSerializer Constructor Description AsArraySerializerBase(AsArraySerializerBase<?> src, BeanProperty property, TypeSerializer vts, JsonSerializer<?> elementSerializer)Deprecated.since 2.6: use the overloaded method that takes 'unwrapSingle'AsArraySerializerBase(AsArraySerializerBase<?> src, BeanProperty property, TypeSerializer vts, JsonSerializer<?> elementSerializer, Boolean unwrapSingle)AsArraySerializerBase(Class<?> cls, JavaType et, boolean staticTyping, TypeSerializer vts, BeanProperty property, JsonSerializer<Object> elementSerializer)Deprecated.Since 2.6 Use variants that either take 'src', or do NOT pass BeanPropertyAsArraySerializerBase(Class<?> cls, JavaType et, boolean staticTyping, TypeSerializer vts, JsonSerializer<Object> elementSerializer)Non-contextual, "blueprint" constructor typically called when the first instance is created, without knowledge of property it was used via.AtomicReferenceSerializer(AtomicReferenceSerializer base, BeanProperty property, TypeSerializer vts, JsonSerializer<?> valueSer, NameTransformer unwrapper, Object suppressableValue, boolean suppressNulls)AtomicReferenceSerializer(ReferenceType fullType, boolean staticTyping, TypeSerializer vts, JsonSerializer<Object> ser)CollectionSerializer(JavaType elemType, boolean staticTyping, TypeSerializer vts, BeanProperty property, JsonSerializer<Object> valueSerializer)Deprecated.since 2.6CollectionSerializer(JavaType elemType, boolean staticTyping, TypeSerializer vts, JsonSerializer<Object> valueSerializer)CollectionSerializer(CollectionSerializer src, BeanProperty property, TypeSerializer vts, JsonSerializer<?> valueSerializer, Boolean unwrapSingle)EnumSetSerializer(EnumSetSerializer src, BeanProperty property, TypeSerializer vts, JsonSerializer<?> valueSerializer, Boolean unwrapSingle)IterableSerializer(IterableSerializer src, BeanProperty property, TypeSerializer vts, JsonSerializer<?> valueSerializer, Boolean unwrapSingle)JsonValueSerializer(AnnotatedMember accessor, JsonSerializer<?> ser)JsonValueSerializer(JsonValueSerializer src, BeanProperty property, JsonSerializer<?> ser, boolean forceTypeInfo)MapSerializer(MapSerializer src, BeanProperty property, JsonSerializer<?> keySerializer, JsonSerializer<?> valueSerializer, Set<String> ignoredEntries)MapSerializer(Set<String> ignoredEntries, JavaType keyType, JavaType valueType, boolean valueTypeIsStatic, TypeSerializer vts, JsonSerializer<?> keySerializer, JsonSerializer<?> valueSerializer)ObjectArraySerializer(JavaType elemType, boolean staticTyping, TypeSerializer vts, JsonSerializer<Object> elementSerializer)ObjectArraySerializer(ObjectArraySerializer src, BeanProperty property, TypeSerializer vts, JsonSerializer<?> elementSerializer, Boolean unwrapSingle)ReferenceTypeSerializer(ReferenceTypeSerializer<?> base, BeanProperty property, TypeSerializer vts, JsonSerializer<?> valueSer, NameTransformer unwrapper, Object suppressableValue, boolean suppressNulls)ReferenceTypeSerializer(ReferenceType fullType, boolean staticTyping, TypeSerializer vts, JsonSerializer<Object> ser)StdDelegatingSerializer(Converter<Object,?> converter, JavaType delegateType, JsonSerializer<?> delegateSerializer)
-