There is probably a simple one-liner that I am just not finding here, but this is my question:
How do I check if an ArrayList contains all of the objects in another
There is a method called containsAll declared in the java.util.Collection interface. In your setting one.containsAll(two) gives the desired answer.
containsAll
java.util.Collection
one.containsAll(two)