Package org.codehaus.jackson.map.ser.std
Class StdArraySerializers.ArraySerializerBase<T>
java.lang.Object
org.codehaus.jackson.map.JsonSerializer<T>
org.codehaus.jackson.map.ser.std.SerializerBase<T>
org.codehaus.jackson.map.ser.std.ContainerSerializerBase<T>
org.codehaus.jackson.map.ser.std.StdArraySerializers.ArraySerializerBase<T>
- All Implemented Interfaces:
SchemaAware
- Direct Known Subclasses:
ObjectArraySerializer,StdArraySerializers.BooleanArraySerializer,StdArraySerializers.DoubleArraySerializer,StdArraySerializers.FloatArraySerializer,StdArraySerializers.IntArraySerializer,StdArraySerializers.LongArraySerializer,StdArraySerializers.ShortArraySerializer,StdArraySerializers.StringArraySerializer
- Enclosing class:
StdArraySerializers
public abstract static class StdArraySerializers.ArraySerializerBase<T>
extends ContainerSerializerBase<T>
Base class for serializers that will output contents as JSON
arrays.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.codehaus.jackson.map.JsonSerializer
JsonSerializer.None -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final BeanPropertyArray-valued property being serialized with this instanceprotected final TypeSerializerType serializer used for values, if any.Fields inherited from class org.codehaus.jackson.map.ser.std.SerializerBase
_handledType -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedArraySerializerBase(Class<T> cls, TypeSerializer vts, BeanProperty property) -
Method Summary
Modifier and TypeMethodDescriptionfinal voidserialize(T value, JsonGenerator jgen, SerializerProvider provider) Method that can be called to ask implementation to serialize values of type this serializer handles.protected abstract voidserializeContents(T value, JsonGenerator jgen, SerializerProvider provider) final voidserializeWithType(T 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.Methods inherited from class org.codehaus.jackson.map.ser.std.ContainerSerializerBase
_withValueTypeSerializer, withValueTypeSerializerMethods inherited from class org.codehaus.jackson.map.ser.std.SerializerBase
createObjectNode, createSchemaNode, createSchemaNode, getSchema, handledType, isDefaultSerializer, wrapAndThrow, wrapAndThrow, wrapAndThrow, wrapAndThrowMethods inherited from class org.codehaus.jackson.map.JsonSerializer
isUnwrappingSerializer, unwrappingSerializer
-
Field Details
-
_valueTypeSerializer
Type serializer used for values, if any. -
_property
Array-valued property being serialized with this instance- Since:
- 1.7
-
-
Constructor Details
-
ArraySerializerBase
-
-
Method Details
-
serialize
public final void serialize(T value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonGenerationException Description copied from class:JsonSerializerMethod that can be called to ask implementation to serialize values of type this serializer handles.- Specified by:
serializein classSerializerBase<T>- Parameters:
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.- Throws:
IOExceptionJsonGenerationException
-
serializeWithType
public final void serializeWithType(T value, JsonGenerator jgen, SerializerProvider provider, TypeSerializer typeSer) throws IOException, JsonGenerationException Description copied from class:JsonSerializerMethod that can be called to ask implementation to serialize values of type this serializer handles, using specified type serializer for embedding necessary type information.Default implementation will ignore serialization of type information, and just calls
JsonSerializer.serialize(T, org.codehaus.jackson.JsonGenerator, org.codehaus.jackson.map.SerializerProvider): serializers that can embed type information should override this to implement actual handling. Most common such handling is done by something like:// note: method to call depends on whether this type is serialized as JSON scalar, object or Array! typeSer.writeTypePrefixForScalar(value, jgen); serialize(value, jgen, provider); typeSer.writeTypeSuffixForScalar(value, jgen);
- Overrides:
serializeWithTypein classJsonSerializer<T>- Parameters:
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 information- Throws:
IOExceptionJsonGenerationException
-
serializeContents
protected abstract void serializeContents(T value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonGenerationException - Throws:
IOExceptionJsonGenerationException
-