Java StackTraceElement .getMethodName ()
Syntax
StackTraceElement.getMethodName() has the following syntax.
public String getMethodName()
Example
In the following code shows how to use StackTraceElement.getMethodName() method.
/* w ww.j a v a 2s. c o m*/
public class Main {
public static void main(String[] args) {
System.out.println(Thread.currentThread().getStackTrace()[0].getMethodName());
}
}
The code above generates the following result.