javastrava.json.impl.gson.serializer.MapPointSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javastrava-api Show documentation
Show all versions of javastrava-api Show documentation
Java implementation of the Strava API
package javastrava.json.impl.gson.serializer;
import java.lang.reflect.Type;
import java.util.ArrayList;
import javastrava.api.v3.model.StravaMapPoint;
import com.google.gson.JsonArray;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonParseException;
import com.google.gson.JsonSerializationContext;
import com.google.gson.JsonSerializer;
/**
* @author Dan Shannon
*
*/
public class MapPointSerializer implements JsonDeserializer, JsonSerializer {
/**
* @see com.google.gson.JsonSerializer#serialize(java.lang.Object, java.lang.reflect.Type,
* com.google.gson.JsonSerializationContext)
*/
@Override
public JsonElement serialize(final StravaMapPoint point, final Type type, final JsonSerializationContext context) {
ArrayList list = new ArrayList();
list.add(point.getLatitude());
list.add(point.getLongitude());
return context.serialize(list);
}
/**
* @see com.google.gson.JsonDeserializer#deserialize(com.google.gson.JsonElement, java.lang.reflect.Type,
* com.google.gson.JsonDeserializationContext)
*/
@Override
public StravaMapPoint deserialize(final JsonElement element, final Type type, final JsonDeserializationContext context)
throws JsonParseException {
JsonArray array = element.getAsJsonArray();
return new StravaMapPoint(Float.valueOf(array.get(0).getAsFloat()), Float.valueOf(array.get(1).getAsFloat()));
}
}