Check if an ArrayList contains every element from another ArrayList (or Collection)
There is a method called containsAll
declared in the java.util.Collection
interface. In your setting one.containsAll(two)
gives the desired answer.
Per the List interface:
myList.containsAll(...);
Take a look at containsAll(Collection<?> c)
method from List
interface. I think it is what you are looking for.