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"])