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