public class CollectionSerializer extends AsArraySerializerBase<Collection<?>>
Iterator
to iterate over elements.JsonSerializer.None_dynamicSerializers, _elementSerializer, _elementType, _property, _staticTyping, _valueTypeSerializer_handledType| Constructor and Description |
|---|
CollectionSerializer(CollectionSerializer src,
BeanProperty property,
TypeSerializer vts,
JsonSerializer<?> valueSerializer) |
CollectionSerializer(JavaType elemType,
boolean staticTyping,
TypeSerializer vts,
BeanProperty property,
JsonSerializer<Object> valueSerializer) |
| Modifier and Type | Method and Description |
|---|---|
ContainerSerializer<?> |
_withValueTypeSerializer(TypeSerializer vts)
Method that needs to be implemented to allow construction of a new
serializer object with given
TypeSerializer, used when
addition type information is to be embedded. |
boolean |
hasSingleElement(Collection<?> value)
Method called to determine if the given value (of type handled by
this serializer) contains exactly one element.
|
boolean |
isEmpty(Collection<?> value)
Method called to check whether given serializable value is
considered "empty" value (for purposes of suppressing serialization
of empty values).
|
void |
serializeContents(Collection<?> value,
JsonGenerator jgen,
SerializerProvider provider) |
void |
serializeContentsUsing(Collection<?> value,
JsonGenerator jgen,
SerializerProvider provider,
JsonSerializer<Object> ser) |
CollectionSerializer |
withResolved(BeanProperty property,
TypeSerializer vts,
JsonSerializer<?> elementSerializer) |
_findAndAddDynamic, _findAndAddDynamic, acceptJsonFormatVisitor, createContextual, getContentSerializer, getContentType, getSchema, serialize, serializeWithTypehasContentTypeAnnotation, withValueTypeSerializercreateObjectNode, createSchemaNode, createSchemaNode, findConvertingContentSerializer, getSchema, handledType, isDefaultSerializer, wrapAndThrow, wrapAndThrowgetDelegatee, isUnwrappingSerializer, replaceDelegatee, unwrappingSerializer, usesObjectIdpublic CollectionSerializer(JavaType elemType, boolean staticTyping, TypeSerializer vts, BeanProperty property, JsonSerializer<Object> valueSerializer)
public CollectionSerializer(CollectionSerializer src, BeanProperty property, TypeSerializer vts, JsonSerializer<?> valueSerializer)
public ContainerSerializer<?> _withValueTypeSerializer(TypeSerializer vts)
ContainerSerializerTypeSerializer, used when
addition type information is to be embedded._withValueTypeSerializer in class ContainerSerializer<Collection<?>>public CollectionSerializer withResolved(BeanProperty property, TypeSerializer vts, JsonSerializer<?> elementSerializer)
withResolved in class AsArraySerializerBase<Collection<?>>public boolean isEmpty(Collection<?> value)
JsonSerializerDefault implementation will consider only null values to be empty.
isEmpty in class ContainerSerializer<Collection<?>>public boolean hasSingleElement(Collection<?> value)
ContainerSerializerNote: 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).
hasSingleElement in class ContainerSerializer<Collection<?>>public void serializeContents(Collection<?> value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonGenerationException
serializeContents in class AsArraySerializerBase<Collection<?>>IOExceptionJsonGenerationExceptionpublic void serializeContentsUsing(Collection<?> value, JsonGenerator jgen, SerializerProvider provider, JsonSerializer<Object> ser) throws IOException, JsonGenerationException
IOExceptionJsonGenerationExceptionCopyright © 2012-2013 FasterXML. All Rights Reserved.