List of utility methods to do Collection Merge
Collection | addAllIgnoreContains( Collection Add all elements in the target collection to the origin collection, and ignore elements which origin collection contained. if (origin == null) { return null; List<T> temp = new ArrayList<T>(); if (!isEmpty(target)) { Iterator<T> it = target.iterator(); while (it.hasNext()) { T object = it.next(); ... |