Java StackTraceElement .equals (Object obj)
Syntax
StackTraceElement.equals(Object obj) has the following syntax.
public boolean equals(Object obj)
Example
In the following code shows how to use StackTraceElement.equals(Object obj) method.
/* w ww . j a v a 2 s .com*/
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.