All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.nmorel.gwtjackson.client.deser.StringJsonDeserializer Maven / Gradle / Ivy

Go to download

gwt-jackson is a GWT JSON serializer/deserializer mechanism based on Jackson annotations

There is a newer version: 0.15.4
Show newest version
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