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