static bool containsAll(Collection a, Collection b) { for (A o : b) if (!a.contains(o)) false; true; }