* @param returnType the target return type
* @param argTypes the target argument types
* @return a new Binder
*/
public Binder convert(Class returnType, Class... argTypes) {
return new Binder(this, new Convert(type()), MethodType.methodType(returnType, argTypes));
}