com.github.nmorel.gwtjackson.client.deser.StringJsonDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-jackson Show documentation
Show all versions of gwt-jackson Show documentation
gwt-jackson is a GWT JSON serializer/deserializer mechanism based on Jackson annotations
package com.github.nmorel.gwtjackson.client.deser;
import java.io.IOException;
import com.github.nmorel.gwtjackson.client.JsonDeserializationContext;
import com.github.nmorel.gwtjackson.client.JsonDeserializer;
import com.github.nmorel.gwtjackson.client.stream.JsonReader;
/**
* Default {@link JsonDeserializer} implementation for {@link String}.
*
* @author Nicolas Morel
*/
public class StringJsonDeserializer extends JsonDeserializer {
private static final StringJsonDeserializer INSTANCE = new StringJsonDeserializer();
/**
* @return an instance of {@link StringJsonDeserializer}
*/
public static StringJsonDeserializer getInstance() {
return INSTANCE;
}
private StringJsonDeserializer() { }
@Override
public String doDeserialize( JsonReader reader, JsonDeserializationContext ctx ) throws IOException {
return reader.nextString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy