com.litongjava.tio.utils.json.GsonFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-utils Show documentation
Show all versions of tio-utils Show documentation
t-io is a aio framework for java
package com.litongjava.tio.utils.json;
public class GsonFactory implements IJsonFactory {
private static final GsonFactory me = new GsonFactory();
public static GsonFactory me() {
return me;
}
public GsonFactory() {
}
@Override
public Json getJson() {
return new GsonJson();
}
}