Java Collection Remove removeAll(final Collection collection, final T... objects)

Here you can find the source of removeAll(final Collection collection, final T... objects)

Description

Removes all objects from the specified list.

License

Open Source License

Parameter

Parameter Description
collection list to fill
objects objects
T objects type

Return

true if list changed as the result of this operation, false otherwise

Declaration

public static <T> boolean removeAll(final Collection<T> collection, final T... objects) 

Method Source Code


//package com.java2s;
/*/*from  ww w  . ja v a 2s  .  co m*/
 * This file is part of WebLookAndFeel library.
 *
 * WebLookAndFeel library is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * WebLookAndFeel library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with WebLookAndFeel library.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.util.*;

public class Main {
    /**
     * Removes all objects from the specified list.
     *
     * @param collection list to fill
     * @param objects    objects
     * @param <T>        objects type
     * @return true if list changed as the result of this operation, false otherwise
     */
    public static <T> boolean removeAll(final Collection<T> collection, final T... objects) {
        boolean result = false;
        for (final T object : objects) {
            result |= collection.remove(object);
        }
        return result;
    }
}

Related

  1. removeAll(Collection collection, T... elementsToRemove)
  2. removeAll(Collection left, Collection right)
  3. removeAll(Collection source, Collection remove)
  4. removeAll(final Collection c, final Object... array)
  5. removeAll(final Collection collection, final Collection remove)
  6. removeAllElements(Collection data, T value)
  7. removeAllFromCollection(Collection collection, Collection toRemove)
  8. removeAllFromSet(AbstractSet collection, Collection toRemove)
  9. removeAny(Collection collection)