Invokable<T,T> |
TypeToken.constructor(Constructor<?> constructor) |
Returns the Invokable for constructor , which must be a member of T .
|
static <T> Invokable<T,T> |
Invokable.from(Constructor<T> constructor) |
|
static Invokable<?,Object> |
Invokable.from(Method method) |
|
Invokable<?,?> |
Parameter.getDeclaringInvokable() |
Returns the Invokable that declares this parameter.
|
Invokable<T,Object> |
TypeToken.method(Method method) |
Returns the Invokable for method , which must be a member of T .
|
<R1 extends R> Invokable<T,R1> |
Invokable.returning(TypeToken<R1> returnType) |
Explicitly specifies the return type of this Invokable .
|
<R1 extends R> Invokable<T,R1> |
Invokable.returning(Class<R1> returnType) |
Explicitly specifies the return type of this Invokable .
|