public class UnwrappingBeanSerializer extends BeanSerializerBase
JsonSerializer.None
Modifier and Type | Field and Description |
---|---|
protected NameTransformer |
_nameTransformer
Transformer used to add prefix and/or suffix for properties
of unwrapped POJO.
|
_anyGetterWriter, _filteredProps, _objectIdWriter, _propertyFilterId, _props, _serializationShape, _typeId, NO_PROPS
_handledType
Modifier | Constructor and Description |
---|---|
|
UnwrappingBeanSerializer(BeanSerializerBase src,
NameTransformer transformer)
Constructor used for creating unwrapping instance of a
standard
BeanSerializer |
|
UnwrappingBeanSerializer(UnwrappingBeanSerializer src,
ObjectIdWriter objectIdWriter) |
protected |
UnwrappingBeanSerializer(UnwrappingBeanSerializer src,
String[] toIgnore) |
Modifier and Type | Method and Description |
---|---|
protected BeanSerializerBase |
asArraySerializer()
JSON Array output can not be done if unwrapping operation is
requested; so implementation will simply return 'this'.
|
boolean |
isUnwrappingSerializer()
Accessor for checking whether this serializer is an
"unwrapping" serializer; this is necessary to know since
it may also require caller to suppress writing of the
leading property name.
|
void |
serialize(Object bean,
JsonGenerator jgen,
SerializerProvider provider)
Main serialization method that will delegate actual output to
configured
BeanPropertyWriter instances. |
String |
toString() |
JsonSerializer<Object> |
unwrappingSerializer(NameTransformer transformer)
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).
|
protected UnwrappingBeanSerializer |
withIgnorals(String[] toIgnore)
Fluent factory used for creating a new instance with additional
set of properties to ignore (from properties this instance otherwise has)
|
UnwrappingBeanSerializer |
withObjectIdWriter(ObjectIdWriter objectIdWriter)
Fluent factory used for creating a new instance with different
ObjectIdWriter . |
_serializeWithObjectId, _serializeWithObjectId, acceptJsonFormatVisitor, createContextual, findConvertingSerializer, findFilter, getSchema, resolve, serializeFields, serializeFieldsFiltered, serializeWithType, usesObjectId
createObjectNode, createSchemaNode, createSchemaNode, findConvertingContentSerializer, getSchema, handledType, isDefaultSerializer, wrapAndThrow, wrapAndThrow
getDelegatee, isEmpty, replaceDelegatee
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getSchema
protected final NameTransformer _nameTransformer
public UnwrappingBeanSerializer(BeanSerializerBase src, NameTransformer transformer)
BeanSerializer
public UnwrappingBeanSerializer(UnwrappingBeanSerializer src, ObjectIdWriter objectIdWriter)
protected UnwrappingBeanSerializer(UnwrappingBeanSerializer src, String[] toIgnore)
public JsonSerializer<Object> unwrappingSerializer(NameTransformer transformer)
JsonSerializer
Default implementation just returns serializer as-is, indicating that no unwrapped variant exists
unwrappingSerializer
in class JsonSerializer<Object>
transformer
- Name transformation to use to convert between names
of unwrapper propertiespublic boolean isUnwrappingSerializer()
JsonSerializer
isUnwrappingSerializer
in class JsonSerializer<Object>
public UnwrappingBeanSerializer withObjectIdWriter(ObjectIdWriter objectIdWriter)
BeanSerializerBase
ObjectIdWriter
.withObjectIdWriter
in class BeanSerializerBase
protected UnwrappingBeanSerializer withIgnorals(String[] toIgnore)
BeanSerializerBase
withIgnorals
in class BeanSerializerBase
protected BeanSerializerBase asArraySerializer()
asArraySerializer
in class BeanSerializerBase
public final void serialize(Object bean, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonGenerationException
BeanPropertyWriter
instances.serialize
in class BeanSerializerBase
bean
- Value to serialize; can not be null.jgen
- Generator used to output resulting Json contentprovider
- Provider that can be used to get serializers for
serializing Objects value contains, if any.IOException
JsonGenerationException
Copyright © 2012-2013 FasterXML. All Rights Reserved.