I have two Set
s
set1 contains(\"A\",\"B\",\"C\",\"D\") elements
set2 contains(\"E\",\"F\",\"D\",\"G\") elements
I want to co
Rearranged to better list the several ways:
With two Iterators:
Common value detected : [ ]
setOne position : [ ]
setTwo position : [ ]
With a single Iterator and Set.contains(Object):
Common value detected : [ ]
With a single Iterator and pure OGNL:
Common value detected : [ ]
Without Iterators, using OGNL List Selection only (thanks to @AleksandrM for the code):