All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockito.internal.util.collections.ListUtil Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2007 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */

package org.mockito.internal.util.collections;

import java.util.Collection;
import java.util.LinkedList;

public class ListUtil {

    public static  LinkedList filter(Collection collection, Filter filter) {
        LinkedList filtered = new LinkedList();
        for (T t : collection) {
            if (!filter.isOut(t)) {
                filtered.add(t);
            }
        }
        return filtered;
    }
    
    public interface Filter {
        boolean isOut(T object);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy