The getReturnType() method is used to get method return value in java.
Example
TestClass.java
package com.w3spoint; public class TestClass { public void display(String message){ System.out.println(message); } } |
ReflectionTest.java
package com.w3spoint; import java.lang.reflect.Method; public class ReflectionTest { public static void main(String args[]){ try { Class c=Class.forName("com.w3spoint.TestClass"); Method method = c.getMethod("display", String.class); System.out.println("Return Type: " + method.getReturnType()); } catch (Exception e) { e.printStackTrace(); } } } |
Output
Return Type: void |