I am wondering if there is a way to search a specific value in variables while debugging.
For example, I have this code:
public void init(){
int a=5;
String s="Hello world";
boolean enable = true;
}
I want to search for value "Hello world" in all variables. So is there a way to put this value somewhere and debugger stops at point when it finds it?