org.codehaus.jackson.map.ser
Class BasicSerializerFactory.StringSerializer

java.lang.Object
  extended by org.codehaus.jackson.map.JsonSerializer<java.lang.String>
      extended by org.codehaus.jackson.map.ser.BasicSerializerFactory.StringSerializer
Enclosing class:
BasicSerializerFactory

public static final class BasicSerializerFactory.StringSerializer
extends JsonSerializer<java.lang.String>

This is the special serializer for regular Strings.


Constructor Summary
BasicSerializerFactory.StringSerializer()
           
 
Method Summary
 void serialize(java.lang.String 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
 

Constructor Detail

BasicSerializerFactory.StringSerializer

public BasicSerializerFactory.StringSerializer()
Method Detail

serialize

public void serialize(java.lang.String 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.String>
Parameters:
value - Value to serialize; can not be null.
jgen - Generator used to output resulting Json content
provider - Provider that can be used to get serializers for serializing Objects value contains, if any.
Throws:
java.io.IOException
JsonGenerationException