org.codehaus.jackson.map.ser
Class StdSerializers.TokenBufferSerializer
java.lang.Object
org.codehaus.jackson.map.JsonSerializer<T>
org.codehaus.jackson.map.ser.SerializerBase<TokenBuffer>
org.codehaus.jackson.map.ser.StdSerializers.TokenBufferSerializer
- All Implemented Interfaces:
- SchemaAware
- Enclosing class:
- StdSerializers
public static final class StdSerializers.TokenBufferSerializer
- extends SerializerBase<TokenBuffer>
We also want to directly support serialization of TokenBuffer
;
and since it is part of core package, it can not implement
JsonSerializable
(which is only included in the mapper
package)
- Since:
- 1.5
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
StdSerializers.TokenBufferSerializer
public StdSerializers.TokenBufferSerializer()
serialize
public void serialize(TokenBuffer value,
JsonGenerator jgen,
SerializerProvider provider)
throws IOException,
JsonGenerationException
- Description copied from class:
JsonSerializer
- Method that can be called to ask implementation to serialize
values of type this serializer handles.
- Specified by:
serialize
in class SerializerBase<TokenBuffer>
- 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:
IOException
JsonGenerationException
serializeWithType
public final void serializeWithType(TokenBuffer value,
JsonGenerator jgen,
SerializerProvider provider,
TypeSerializer typeSer)
throws IOException,
JsonGenerationException
- Implementing typed output for contents of a TokenBuffer is very tricky,
since we do not know for sure what its contents might look like.
One possibility would be to check the current token, and use that to
determine if we would output Json Array, Object or scalar value.
That might or might now work,
so for now (as of 1.5), let's not output any type information.
- Overrides:
serializeWithType
in class JsonSerializer<TokenBuffer>
- 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:
IOException
JsonGenerationException
getSchema
public JsonNode getSchema(SerializerProvider provider,
Type typeHint)
- Description copied from interface:
SchemaAware
- Get the representation of the schema to which this serializer will conform.
- Specified by:
getSchema
in interface SchemaAware
- Specified by:
getSchema
in class SerializerBase<TokenBuffer>
- Parameters:
provider
- The serializer provider.typeHint
- A hint about the type.
- Returns:
- Json-schema for this serializer.