Uses of Class
tools.jackson.databind.ser.std.StdSerializer
Packages that use StdSerializer
Package
Description
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.
Package that contains handlers specific to datatypes introduced in Java 8.
Package that contains handlers specific to SQL datatypes.
Contains implementation classes of serialization part of
data binding.
Contains implementation classes of serialization part of
data binding.
-
Uses of StdSerializer in tools.jackson.databind.ext
Subclasses of StdSerializer in tools.jackson.databind.extModifier and TypeClassDescriptionclassclassclass -
Uses of StdSerializer in tools.jackson.databind.ext.javatime.ser
Subclasses of StdSerializer in tools.jackson.databind.ext.javatime.serModifier and TypeClassDescriptionclassSerializer for Java 8 temporalDurations.classclassInstantSerializerBase<T extends Temporal>classSerializer for Java 8 temporalLocalDates.classSerializer for Java 8 temporalLocalDateTimes.classSerializer for Java 8 temporalLocalTimes.classSerializer for Java 8 temporalMonthDays.classSerializer for Java 8 temporalMonths.classclassSerializer for Java 8 temporalOffsetTimes.classSerializer for Java 8 temporalYearMonths.classSerializer for Java 8 temporalYears.classclass -
Uses of StdSerializer in tools.jackson.databind.ext.jdk8
Subclasses of StdSerializer in tools.jackson.databind.ext.jdk8Modifier and TypeClassDescriptionclassDoubleStreamserializerclassIntStreamserializerclassclassCommon typed stream serializerclassLongStreamserializerclassclassclass -
Uses of StdSerializer in tools.jackson.databind.ext.sql
Subclasses of StdSerializer in tools.jackson.databind.ext.sqlModifier and TypeClassDescriptionclassSerializer implementation forBlobto write as binary (for JSON and other formats Base64-encoded String, for binary formats as true binary).classCompared to regularDateserialization, we do use String representation here.classNOTE: name wasSqlTimeSerializerin Jackson 2.x -
Uses of StdSerializer in tools.jackson.databind.ser
Subclasses of StdSerializer in tools.jackson.databind.serModifier and TypeClassDescriptionclassSerializer class that can serialize Java objects that map to JSON Object output.class -
Uses of StdSerializer in tools.jackson.databind.ser.bean
Subclasses of StdSerializer in tools.jackson.databind.ser.beanModifier and TypeClassDescriptionclassSpecialized 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.classBase class both for the standard bean serializer, and couple of variants that only differ in small details.classSpecialization ofBeanAsArraySerializer, optimized for handling small number of properties where calls to property handlers can be "unrolled" by eliminated looping.class -
Uses of StdSerializer in tools.jackson.databind.ser.impl
Subclasses of StdSerializer in tools.jackson.databind.ser.implModifier and TypeClassDescriptionclassSpecial bogus "serializer" that will throwDatabindExceptionif itsFailingSerializer.serialize(java.lang.Object, tools.jackson.core.JsonGenerator, tools.jackson.databind.SerializationContext)gets invoked.classclassSpecial bogus "serializer" that will throwInvalidDefinitionExceptionif itsUnsupportedTypeSerializer.serialize(java.lang.Object, tools.jackson.core.JsonGenerator, tools.jackson.databind.SerializationContext)gets invoked. -
Uses of StdSerializer in tools.jackson.databind.ser.jackson
Subclasses of StdSerializer in tools.jackson.databind.ser.jacksonModifier and TypeClassDescriptionclassGeneric handler for types that implementJacksonSerializable.classSerializer 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.classThis is a simple dummy serializer that will just output raw values by calling toString() on value to serialize.classWe also want to directly support serialization ofTokenBuffer; and since it is part of core package, it cannot implementJacksonSerializable(which is only included in the mapper package) -
Uses of StdSerializer in tools.jackson.databind.ser.jdk
Subclasses of StdSerializer in tools.jackson.databind.ser.jdkModifier and TypeClassDescriptionclassfinal classSerializer used for primitive boolean, as well as java.util.Boolean wrapper type.classUnlike other integral number array serializers, we do not just print out byte values as numbers.classclassFallback serializer for cases where Collection is not known to be of type for which more specializer serializer exists (such as index-accessible List).classclassStandard serializer used forEnumtypes.classfinal classThis is an optimized serializer for Lists that can be efficiently traversed by index (as opposed to others, such asLinkedListthat cannot}.final classEfficient implement for serializingLists that contains Strings and are random-accessible.classSimple serializer forInetAddress.classSimple serializer forInetSocketAddress.classclassclassStandard serializer forCalendar.classFor efficiency, we will serialize Dates as longs, instead of potentially more readable Strings.static classAlternative serializer for arrays of primitive doubles, using "packed binary" representation ("binary vector") instead of JSON array.static classAlternative serializer for arrays of primitive floats, using "packed binary" representation ("binary vector") instead of JSON array.static classstatic classCharacter 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 classstatic classstatic classstatic classstatic classprotected static classIntermediate base class used for cases where we may add type information (excludes boolean/int/double arrays).static classThis is a "chameleon" style multi-type key serializer for simple standard JDK types.static classKey serializer used when key type is not known statically, and actual key serializer needs to be dynamically located.static classSpecialized instance to use for Enum keys, as per [databind#1322]static classSimple and fast key serializer when keys are Strings.static classstatic classstatic classstatic classclass"Combo" serializer used for JDK types that work almost likeToStringSerializer.classSerializer used to serialize Map.Entry as POJOs: that is, as if introspected as POJOs so that there's intermediate "key" and "value" properties.classclassStandard serializer implementation for serializing {link java.util.Map} types.classAs a fallback, we may need to use this serializer for other types ofNumbers: both custom types and "big" numbers likeBigIntegerandBigDecimal.static classBase class for actual primitive/wrapper value serializers.static classThis is the special serializer for regularDoubles (and primitive doubles)static classstatic classThis is the special serializer for regularIntegers (and primitive ints)static classSimilar toNumberSerializers.IntegerSerializer, but will not cast to Integer: instead, cast is toNumber, and conversion is by callingNumber.intValue().static classstatic classclassGeneric serializer for Object arrays (Object[]).classStaticListSerializerBase<T extends Collection<?>>Intermediate base class for Lists, Collections and Arrays that contain static (non-dynamic) value types.classStandard serializer used forString[]values.classEfficient implement for serializingCollections that contain Strings.final classThis is the special serializer for regularStrings.classclassSpecializedValueSerializerto outputUUIDs. -
Uses of StdSerializer in tools.jackson.databind.ser.std
Subclasses of StdSerializer in tools.jackson.databind.ser.stdModifier and TypeClassDescriptionclassIntermediate base class for serializers used for various Java arrays.classBase class for serializers that will output contents as JSON arrays; typically serializers used forCollectionand array types.classThis is a simple dummy serializer that will just output literal JSON null value whenever serialization is requested.classBase implementation for values ofReferenceType.classIntermediate 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).classSerializer 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.classBase class for standard serializers that are not (necessarily) container types but that similarly handle content that may vary in ways to require dynamic lookups.classclassSimple "bogus" serializer that will just serialize an empty Object for any given value.final classSimple general purpose serializer, useful for any type for whichObject.toString()returns the desired String serialization value.classIntermediate 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).Constructors in tools.jackson.databind.ser.std with parameters of type StdSerializer