Creates a new instance of MethodInfo with the given information.paramname The name of the methodparamreturnType The return type of the methodparamparamTypes The types of each of the method's parameters this.name = name; this.returnType = returnType; this.paramTypes = paramTypes;
MethodInfo
this.name = name; this.returnType = returnType; this.paramTypes = paramTypes;
Returns the name of the methodreturnthe name of the method return this.name;
return this.name;
Returns the parameter types of the methodreturnthe parameter types of the method return this.paramTypes;
return this.paramTypes;
Returns the return type of the methodreturnthe return type of the method return this.returnType;
return this.returnType;