Class OptionalSerializer
- java.lang.Object
-
- com.fasterxml.jackson.databind.JsonSerializer<T>
-
- com.fasterxml.jackson.databind.ser.std.StdSerializer<T>
-
- com.fasterxml.jackson.databind.ser.std.ReferenceTypeSerializer<Optional<?>>
-
- com.fasterxml.jackson.datatype.jdk8.OptionalSerializer
-
- All Implemented Interfaces:
JsonFormatVisitable,SchemaAware,ContextualSerializer,Serializable
public class OptionalSerializer extends ReferenceTypeSerializer<Optional<?>>
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.fasterxml.jackson.databind.JsonSerializer
JsonSerializer.None
-
-
Field Summary
-
Fields inherited from class com.fasterxml.jackson.databind.ser.std.ReferenceTypeSerializer
_dynamicSerializers, _property, _referredType, _suppressableValue, _suppressNulls, _unwrapper, _valueSerializer, _valueTypeSerializer, MARKER_FOR_EMPTY
-
Fields inherited from class com.fasterxml.jackson.databind.ser.std.StdSerializer
_handledType
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedOptionalSerializer(ReferenceType fullType, boolean staticTyping, TypeSerializer vts, JsonSerializer<Object> ser)protectedOptionalSerializer(OptionalSerializer base, BeanProperty property, TypeSerializer vts, JsonSerializer<?> valueSer, NameTransformer unwrapper, Object suppressableValue, boolean suppressNulls)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Object_getReferenced(Optional<?> value)protected Object_getReferencedIfPresent(Optional<?> value)protected boolean_isValuePresent(Optional<?> value)Method called to see if there is a value present or not.ReferenceTypeSerializer<Optional<?>>withContentInclusion(Object suppressableValue, boolean suppressNulls)Mutant factory method called to create a differently constructed instance, specifically with different exclusion rules for contained value.protected ReferenceTypeSerializer<Optional<?>>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.-
Methods inherited from class com.fasterxml.jackson.databind.ser.std.ReferenceTypeSerializer
_useStatic, acceptJsonFormatVisitor, createContextual, getReferredType, isEmpty, isUnwrappingSerializer, serialize, serializeWithType, unwrappingSerializer
-
Methods inherited from class com.fasterxml.jackson.databind.ser.std.StdSerializer
_neitherNull, _nonEmpty, createSchemaNode, createSchemaNode, findAnnotatedContentSerializer, findContextualConvertingSerializer, findConvertingContentSerializer, findFormatFeature, findFormatOverrides, findIncludeOverrides, findPropertyFilter, getSchema, getSchema, handledType, isDefaultSerializer, visitArrayFormat, visitArrayFormat, visitFloatFormat, visitIntFormat, visitIntFormat, visitStringFormat, visitStringFormat, wrapAndThrow, wrapAndThrow
-
Methods inherited from class com.fasterxml.jackson.databind.JsonSerializer
getDelegatee, isEmpty, properties, replaceDelegatee, usesObjectId, withFilterId
-
-
-
-
Constructor Detail
-
OptionalSerializer
protected OptionalSerializer(ReferenceType fullType, boolean staticTyping, TypeSerializer vts, JsonSerializer<Object> ser)
-
OptionalSerializer
protected OptionalSerializer(OptionalSerializer base, BeanProperty property, TypeSerializer vts, JsonSerializer<?> valueSer, NameTransformer unwrapper, Object suppressableValue, boolean suppressNulls)
-
-
Method Detail
-
withResolved
protected ReferenceTypeSerializer<Optional<?>> withResolved(BeanProperty prop, TypeSerializer vts, JsonSerializer<?> valueSer, NameTransformer unwrapper)
Description copied from class:ReferenceTypeSerializerMutant factory method called when changes are needed; should construct newly configured instance with new values as indicated.NOTE: caller has verified that there are changes, so implementations need NOT check if a new instance is needed.
- Specified by:
withResolvedin classReferenceTypeSerializer<Optional<?>>
-
withContentInclusion
public ReferenceTypeSerializer<Optional<?>> withContentInclusion(Object suppressableValue, boolean suppressNulls)
Description copied from class:ReferenceTypeSerializerMutant factory method called to create a differently constructed instance, specifically with different exclusion rules for contained value.NOTE: caller has verified that there are changes, so implementations need NOT check if a new instance is needed.
- Specified by:
withContentInclusionin classReferenceTypeSerializer<Optional<?>>
-
_isValuePresent
protected boolean _isValuePresent(Optional<?> value)
Description copied from class:ReferenceTypeSerializerMethod called to see if there is a value present or not. Note that value itself may still be `null`, even if present, if referential type allows three states (absent, present-null, present-non-null); some only allow two (absent, present-non-null).- Specified by:
_isValuePresentin classReferenceTypeSerializer<Optional<?>>
-
_getReferenced
protected Object _getReferenced(Optional<?> value)
- Specified by:
_getReferencedin classReferenceTypeSerializer<Optional<?>>
-
_getReferencedIfPresent
protected Object _getReferencedIfPresent(Optional<?> value)
- Specified by:
_getReferencedIfPresentin classReferenceTypeSerializer<Optional<?>>
-
-