org.codehaus.jackson.map.ser
Class BasicSerializerFactory.NumberSerializer
java.lang.Object
org.codehaus.jackson.map.JsonSerializer<java.lang.Number>
org.codehaus.jackson.map.ser.BasicSerializerFactory.NumberSerializer
- Enclosing class:
- BasicSerializerFactory
public static final class BasicSerializerFactory.NumberSerializer
- extends JsonSerializer<java.lang.Number>
As a fallback, we may need to use this serializer for other
types of Numbers (custom types).
|
Method Summary |
void |
serialize(java.lang.Number value,
JsonGenerator jgen,
SerializerProvider provider)
Method that can be called to ask implementation to serialize
values of type this serializer handles. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
instance
public static final BasicSerializerFactory.NumberSerializer instance
BasicSerializerFactory.NumberSerializer
public BasicSerializerFactory.NumberSerializer()
serialize
public void serialize(java.lang.Number value,
JsonGenerator jgen,
SerializerProvider provider)
throws java.io.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 JsonSerializer<java.lang.Number>
- 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:
java.io.IOException
JsonGenerationException