JavaPoet 添加泛型参数
JavaPoet Add Generic Parameter
如何生成具有以下签名的方法?
public <T extends MyClass> void doSomething(T t)
到目前为止我有:
MethodSpec.methodBuilder("doSomething")
.addModifiers(Modifier.PUBLIC)
.addTypeVariable(TypeVariableName.get("T", MyClass.class))
.build()
EDIT 这是上面的代码生成的(我不知道如何添加参数):
public <T extends Myclass> void doSomething()
将您生成的 TypeVariableName
提取到一个变量中,以便您可以重复使用它的值
TypeVariableName typeVariableName = TypeVariableName.get("T", MyClass.class);
然后添加该类型的参数
MethodSpec spec = MethodSpec.methodBuilder("doSomething")
.addModifiers(Modifier.PUBLIC)
.addTypeVariable(typeVariableName)
.addParameter(typeVariableName, "t") // you can also add modifiers
.build();
如果你想传递一个通用类型的结构,使用下面的方式。
MethodSpec loadListInteger = MethodSpec.methodBuilder("loadListInteger")
.addModifiers(Modifier.PUBLIC)
.returns(void.class)
.addParameter(ParameterizedTypeName.get(List.class, Integer.class), "list")
.build();
如何生成具有以下签名的方法?
public <T extends MyClass> void doSomething(T t)
到目前为止我有:
MethodSpec.methodBuilder("doSomething")
.addModifiers(Modifier.PUBLIC)
.addTypeVariable(TypeVariableName.get("T", MyClass.class))
.build()
EDIT 这是上面的代码生成的(我不知道如何添加参数):
public <T extends Myclass> void doSomething()
将您生成的 TypeVariableName
提取到一个变量中,以便您可以重复使用它的值
TypeVariableName typeVariableName = TypeVariableName.get("T", MyClass.class);
然后添加该类型的参数
MethodSpec spec = MethodSpec.methodBuilder("doSomething")
.addModifiers(Modifier.PUBLIC)
.addTypeVariable(typeVariableName)
.addParameter(typeVariableName, "t") // you can also add modifiers
.build();
如果你想传递一个通用类型的结构,使用下面的方式。
MethodSpec loadListInteger = MethodSpec.methodBuilder("loadListInteger")
.addModifiers(Modifier.PUBLIC)
.returns(void.class)
.addParameter(ParameterizedTypeName.get(List.class, Integer.class), "list")
.build();