本文整理汇总了Java中com.google.thoughtcrimegson.GsonBuilder类的典型用法代码示例。如果您正苦于以下问题:Java GsonBuilder类的具体用法?Java GsonBuilder怎么用?Java GsonBuilder使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
GsonBuilder类属于com.google.thoughtcrimegson包,在下文中一共展示了GsonBuilder类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getBuilder
import com.google.thoughtcrimegson.GsonBuilder; //导入依赖的package包/类
public static GsonBuilder getBuilder() {
GsonBuilder builder = new GsonBuilder();
builder.registerTypeAdapter(ECPublicKey.class, new ECPublicKeyJsonAdapter());
builder.registerTypeAdapter(IdentityKey.class, new IdentityKeyJsonAdapter());
return builder;
}
示例2: toJson
import com.google.thoughtcrimegson.GsonBuilder; //导入依赖的package包/类
public static String toJson(SignedPreKeyEntity entity) {
GsonBuilder builder = new GsonBuilder();
return forBuilder(builder).create().toJson(entity);
}
示例3: fromJson
import com.google.thoughtcrimegson.GsonBuilder; //导入依赖的package包/类
public static SignedPreKeyEntity fromJson(String serialized) {
GsonBuilder builder = new GsonBuilder();
return forBuilder(builder).create().fromJson(serialized, SignedPreKeyEntity.class);
}
示例4: forBuilder
import com.google.thoughtcrimegson.GsonBuilder; //导入依赖的package包/类
public static GsonBuilder forBuilder(GsonBuilder builder) {
return PreKeyEntity.forBuilder(builder)
.registerTypeAdapter(byte[].class, new ByteArrayJsonAdapter());
}
示例5: forBuilder
import com.google.thoughtcrimegson.GsonBuilder; //导入依赖的package包/类
public static GsonBuilder forBuilder(GsonBuilder builder) {
return builder.registerTypeAdapter(ECPublicKey.class, new ECPublicKeyJsonAdapter());
}
示例6: fromJson
import com.google.thoughtcrimegson.GsonBuilder; //导入依赖的package包/类
public static PreKeyResponse fromJson(String serialized) {
GsonBuilder builder = new GsonBuilder();
return PreKeyResponseItem.forBuilder(builder)
.registerTypeAdapter(IdentityKey.class, new IdentityKeyJsonAdapter())
.create().fromJson(serialized, PreKeyResponse.class);
}
示例7: toJson
import com.google.thoughtcrimegson.GsonBuilder; //导入依赖的package包/类
public static String toJson(PreKeyState state) {
GsonBuilder builder = new GsonBuilder();
return SignedPreKeyEntity.forBuilder(builder)
.registerTypeAdapter(IdentityKey.class, new PreKeyResponse.IdentityKeyJsonAdapter())
.create().toJson(state);
}
示例8: forBuilder
import com.google.thoughtcrimegson.GsonBuilder; //导入依赖的package包/类
public static GsonBuilder forBuilder(GsonBuilder builder) {
return SignedPreKeyEntity.forBuilder(builder);
}