StackTraceElement.getMethodName() has the following syntax.
public String getMethodName()
In the following code shows how to use StackTraceElement.getMethodName() method.
public class Main { public static void main(String[] args) { System.out.println(Thread.currentThread().getStackTrace()[0].getMethodName()); } }
The code above generates the following result.