Is there any way in JAVA to convert a String directly to an expression?
String s="(accountName==TESTDATA1) && (CONTAINER==bank) ||(includeInNetWorth==true)";
if(s==true){
//I want to do something
}
Is there any way in JAVA to convert a String directly to an expression?
String s="(accountName==TESTDATA1) && (CONTAINER==bank) ||(includeInNetWorth==true)";
if(s==true){
//I want to do something
}