com.github.nmorel.gwtjackson.client.deser.UUIDJsonDeserializer 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 java.util.UUID;
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 java.util.UUID}.
*
* @author Nicolas Morel
*/
public class UUIDJsonDeserializer extends JsonDeserializer {
private static final UUIDJsonDeserializer INSTANCE = new UUIDJsonDeserializer();
/**
* @return an instance of {@link UUIDJsonDeserializer}
*/
public static UUIDJsonDeserializer getInstance() {
return INSTANCE;
}
private UUIDJsonDeserializer() { }
@Override
public UUID doDeserialize( JsonReader reader, JsonDeserializationContext ctx ) throws IOException {
return UUID.fromString( reader.nextString() );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy