AndBase开发框架  1.6
 全部  命名空间 文件 函数 变量 枚举值 
Public 成员函数 | 所有成员列表
com.google.gson.InstanceCreator< T >接口 参考

Public 成员函数

createInstance (Type type)
 

详细描述

This interface is implemented to create instances of a class that does not define a no-args constructor. If you can modify the class, you should instead add a private, or public no-args constructor. However, that is not possible for library classes, such as JDK classes, or a third-party library that you do not have source-code of. In such cases, you should define an instance creator for the class. Implementations of this interface should be registered with GsonBuilder#registerTypeAdapter(Type, Object) method before Gson will be able to use them.

Let us look at an example where defining an InstanceCreator might be useful. The

Id

class defined below does not have a default no-args constructor.

public class Id<T> {
  private final Class<T> clazz;
  private final long value;
  public Id(Class<T> clazz, long value) {
    this.clazz = clazz;
    this.value = value;
  }
}

If Gson encounters an object of type

Id

during deserialization, it will throw an exception. The easiest way to solve this problem will be to add a (public or private) no-args constructor as follows:

private Id() {
  this(Object.class, 0L);
}

However, let us assume that the developer does not have access to the source-code of the

Id

class, or does not want to define a no-args constructor for it. The developer can solve this problem by defining an

InstanceCreator

for

Id

:

class IdInstanceCreator implements InstanceCreator<Id> {
  public Id createInstance(Type type) {
    return new Id(Object.class, 0L);
  }
}

Note that it does not matter what the fields of the created instance contain since Gson will overwrite them with the deserialized values specified in Json. You should also ensure that a new object is returned, not a common object since its fields will be overwritten. The developer will need to register

IdInstanceCreator

with Gson as follows:

Gson gson = new GsonBuilder().registerTypeAdapter(Id.class, new IdInstanceCreator()).create();
参数
<T>the type of object that will be created by this implementation.
作者
Inderjeet Singh
Joel Leitch

成员函数说明

T com.google.gson.InstanceCreator< T >.createInstance ( Type  type)

Gson invokes this call-back method during deserialization to create an instance of the specified type. The fields of the returned instance are overwritten with the data present in the Json. Since the prior contents of the object are destroyed and overwritten, do not return an instance that is useful elsewhere. In particular, do not return a common instance, always use

new

to create a new instance.

参数
typethe parameterized T represented as a Type.
返回
a default object instance of type T.

该接口的文档由以下文件生成: