Java Collection Element Get getAdditions(Collection source, Collection target)

Here you can find the source of getAdditions(Collection source, Collection target)

Description

get Additions

License

Open Source License

Declaration

public static <T> Collection<T> getAdditions(Collection<T> source, Collection<T> target) 

Method Source Code

//package com.java2s;
/******************************************************************************* 
 * Copyright (c) 2013 Red Hat, Inc. /*from w ww  .ja v  a  2 s.  co m*/
 * Distributed under license by Red Hat, Inc. All rights reserved. 
 * This program is made available under the terms of the 
 * Eclipse Public License v1.0 which accompanies this distribution, 
 * and is available at http://www.eclipse.org/legal/epl-v10.html 
 * 
 * Contributors: 
 * Red Hat, Inc. - initial API and implementation 
 ******************************************************************************/

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

public class Main {
    public static <T> Collection<T> getAdditions(Collection<T> source, Collection<T> target) {
        List<T> addedElements = new ArrayList<T>();
        for (T element : target) {
            if (!source.contains(element)) {
                addedElements.add(element);
            }
        }
        return addedElements;
    }
}

Related

  1. get(Collection p_oCol, T p_oObj)
  2. get(Collection v, int i)
  3. get(final Collection list, final int pos)
  4. get(final Collection collection, final int index)
  5. getAddedItems(Collection oldValues, Collection newValues)
  6. getAll(Map map, Collection indices)
  7. getAllDoubleValues( Map>> doubleCollectionWithValuesToFetch)
  8. getAllTopicsAsString(final Collection topics)
  9. getAncestors(Collection> classes)