public class StringArraySerializer extends ArraySerializerBase<java.lang.String[]> implements ContextualSerializer
String[]
values.JsonSerializer.None
Modifier and Type | Field and Description |
---|---|
static StringArraySerializer |
instance |
Constructor and Description |
---|
StringArraySerializer(StringArraySerializer src,
BeanProperty prop,
JsonSerializer<?> ser,
java.lang.Boolean unwrapSingle) |
Modifier and Type | Method and Description |
---|---|
JsonSerializer<?> |
_withResolved(BeanProperty prop,
java.lang.Boolean unwrapSingle) |
ContainerSerializer<?> |
_withValueTypeSerializer(TypeSerializer vts)
Strings never add type info; hence, even if type serializer is suggested,
we'll ignore it...
|
void |
acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor,
JavaType typeHint)
Default implementation specifies no format.
|
JsonSerializer<?> |
createContextual(SerializerProvider provider,
BeanProperty property)
Method called to see if a different (or differently configured) serializer
is needed to serialize values of specified property.
|
JsonSerializer<?> |
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.
|
JavaType |
getContentType()
Accessor for finding declared (static) element type for
type this serializer is used for.
|
JsonNode |
getSchema(SerializerProvider provider,
java.lang.reflect.Type typeHint)
Default implementation simply claims type is "string"; usually
overriden by custom serializers.
|
boolean |
hasSingleElement(java.lang.String[] value)
Method called to determine if the given value (of type handled by
this serializer) contains exactly one element.
|
boolean |
isEmpty(SerializerProvider prov,
java.lang.String[] value)
Method called to check whether given serializable value is
considered "empty" value (for purposes of suppressing serialization
of empty values).
|
void |
serialize(java.lang.String[] value,
JsonGenerator gen,
SerializerProvider provider)
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
void |
serializeContents(java.lang.String[] value,
JsonGenerator gen,
SerializerProvider provider) |
serializeWithType
withValueTypeSerializer
getSchema, handledType, wrapAndThrow, wrapAndThrow
getDelegatee, isEmpty, isUnwrappingSerializer, properties, replaceDelegatee, unwrappingSerializer, usesObjectId, withFilterId
public static final StringArraySerializer instance
public StringArraySerializer(StringArraySerializer src, BeanProperty prop, JsonSerializer<?> ser, java.lang.Boolean unwrapSingle)
public JsonSerializer<?> _withResolved(BeanProperty prop, java.lang.Boolean unwrapSingle)
_withResolved
in class ArraySerializerBase<java.lang.String[]>
public ContainerSerializer<?> _withValueTypeSerializer(TypeSerializer vts)
public JsonSerializer<?> createContextual(SerializerProvider provider, BeanProperty property) throws JsonMappingException
ContextualSerializer
createContextual
in interface ContextualSerializer
createContextual
in class ArraySerializerBase<java.lang.String[]>
provider
- Serializer provider to use for accessing config, other serializersproperty
- Method or field that represents the property
(and is used to access value to serialize).
Should be available; but there may be cases where caller cannot provide it and
null is passed instead (in which case impls usually pass 'this' serializer as is)JsonMappingException
public JavaType getContentType()
ContainerSerializer
getContentType
in class ContainerSerializer<java.lang.String[]>
public JsonSerializer<?> getContentSerializer()
ContainerSerializer
ContainerSerializer.getContentType()
and
SerializerProvider.findValueSerializer(java.lang.Class<?>, com.fasterxml.jackson.databind.BeanProperty)
.getContentSerializer
in class ContainerSerializer<java.lang.String[]>
public boolean isEmpty(SerializerProvider prov, java.lang.String[] value)
JsonSerializer
Default implementation will consider only null values to be empty.
NOTE: replaces JsonSerializer.isEmpty(Object)
, which was deprecated in 2.5
isEmpty
in class JsonSerializer<java.lang.String[]>
public boolean hasSingleElement(java.lang.String[] value)
ContainerSerializer
Note: although it might seem sensible to instead define something like "getElementCount()" method, this would not work well for containers that do not keep track of size (like linked lists may not).
Note, too, that as of now (2.9) this method is only called by serializer
itself; and specifically is not used for non-array/collection types
like Map
or Map.Entry
instances.
hasSingleElement
in class ContainerSerializer<java.lang.String[]>
public final void serialize(java.lang.String[] value, JsonGenerator gen, SerializerProvider provider) throws java.io.IOException
JsonSerializer
serialize
in class ArraySerializerBase<java.lang.String[]>
value
- Value to serialize; can not be null.gen
- Generator used to output resulting Json contentprovider
- Provider that can be used to get serializers for
serializing Objects value contains, if any.java.io.IOException
public void serializeContents(java.lang.String[] value, JsonGenerator gen, SerializerProvider provider) throws java.io.IOException
java.io.IOException
public JsonNode getSchema(SerializerProvider provider, java.lang.reflect.Type typeHint)
StdSerializer
getSchema
in interface SchemaAware
getSchema
in class StdSerializer<java.lang.String[]>
provider
- The serializer provider.typeHint
- A hint about the type.public void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint) throws JsonMappingException
StdSerializer
acceptJsonFormatVisitor
in interface JsonFormatVisitable
acceptJsonFormatVisitor
in class StdSerializer<java.lang.String[]>
typeHint
- Type of element (entity like property) being visitedJsonMappingException
Copyright © 2010 - 2020 Adobe. All Rights Reserved