com.github.segmentio.utils.GSONUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of analytics Show documentation
Show all versions of analytics Show documentation
The analytics API you've always wanted.
package com.github.segmentio.utils;
import org.joda.time.DateTime;
import com.google.gson.GsonBuilder;
import com.github.segmentio.gson.DateTimeTypeConverter;
public class GSONUtils {
public static final GsonBuilder BUILDER = new GsonBuilder()
.registerTypeAdapter(DateTime.class,new DateTimeTypeConverter());
}