public final class TypeWrappedSerializer extends JsonSerializer<Object>
JsonSerializer.None
Modifier and Type | Field and Description |
---|---|
protected JsonSerializer<Object> |
_serializer |
protected TypeSerializer |
_typeSerializer |
Constructor and Description |
---|
TypeWrappedSerializer(TypeSerializer typeSer,
JsonSerializer<?> ser) |
Modifier and Type | Method and Description |
---|---|
Class<Object> |
handledType()
Method for accessing type of Objects this serializer can handle.
|
void |
serialize(Object value,
JsonGenerator jgen,
SerializerProvider provider)
Method that can be called to ask implementation to serialize
values of type this serializer handles.
|
void |
serializeWithType(Object value,
JsonGenerator jgen,
SerializerProvider provider,
TypeSerializer typeSer)
Method that can be called to ask implementation to serialize
values of type this serializer handles, using specified type serializer
for embedding necessary type information.
|
TypeSerializer |
typeSerializer() |
JsonSerializer<Object> |
valueSerializer() |
acceptJsonFormatVisitor, getDelegatee, isEmpty, isEmpty, isUnwrappingSerializer, replaceDelegatee, unwrappingSerializer, usesObjectId
protected final TypeSerializer _typeSerializer
protected final JsonSerializer<Object> _serializer
public TypeWrappedSerializer(TypeSerializer typeSer, JsonSerializer<?> ser)
public void serialize(Object value, JsonGenerator jgen, SerializerProvider provider) throws IOException
JsonSerializer
serialize
in class JsonSerializer<Object>
value
- 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
public void serializeWithType(Object value, JsonGenerator jgen, SerializerProvider provider, TypeSerializer typeSer) throws IOException
JsonSerializer
Default implementation will throw UnsupportedOperationException
to indicate that proper type handling needs to be implemented.
For simple datatypes written as a single scalar value (JSON String, Number, Boolean), implementation would look like:
// note: method to call depends on whether this type is serialized as JSON scalar, object or Array! typeSer.writeTypePrefixForScalar(value, gen); serialize(value, gen, provider); typeSer.writeTypeSuffixForScalar(value, gen);and implementations for type serialized as JSON Arrays or Objects would differ slightly, as
START-ARRAY>/END-ARRAY
and
START-OBJECT>/END-OBJECT
pairs
need to be properly handled with respect to serializing of contents.
serializeWithType
in class JsonSerializer<Object>
value
- 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.typeSer
- Type serializer to use for including type informationIOException
public Class<Object> handledType()
JsonSerializer
Default implementation will return null, which essentially means
same as returning Object.class
would; that is, that
nothing is known about handled type.
handledType
in class JsonSerializer<Object>
public JsonSerializer<Object> valueSerializer()
public TypeSerializer typeSerializer()
Copyright © 2016 JBoss by Red Hat. All rights reserved.