I had a list with me. The list is like.
List<String> locations=new ArrayList<String>();
locations.add("California");
location.add("sydney");
location.add("Egypt");
Now I want to check in mvel whether this list contains California and Sydney. I thought I could use the below one but that is giving error.
location contains "sydney","california"
How can I find whether a list contains multiple elements in mvel?
This will work:
list.containsAll(["sydney", "california"])
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With