Checks if the collection contains exactly the given must Have Items. - Android java.util

Android examples for java.util:Collection Contains

Description

Checks if the collection contains exactly the given must Have Items.

Demo Code

/*// ww  w  .ja v  a2 s  .co  m
 * Syncany, www.syncany.org
 * Copyright (C) 2011-2015 Philipp C. Heckel <philipp.heckel@gmail.com> 
 *
 * This program 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.
 *
 * This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 */
//package com.book2s;
import java.util.Arrays;
import java.util.Collection;

public class Main {
    /**
     * Checks if the collection contains exactly the given <tt>mustHaveItems</tt>. 
     * 
     * <p><b>Examples:</b><br>
     * <tt>containsOnly(Arrays.asList(new Integer[] { 1, 2, 3 }))          --> false</tt><br>
     * <tt>containsOnly(Arrays.asList(new Integer[] { 1, 2, 3 }), 1, 99)   --> false</tt><br>
     * <tt>containsOnly(Arrays.asList(new Integer[] { 1, 2, 3 }), 1, 2, 3) --> true</tt>
     */
    @SafeVarargs
    public static <T> boolean containsExactly(Collection<T> list,
            T... mustHaveItems) {
        return containsExactly(list, Arrays.asList(mustHaveItems));
    }

    /**
     * Checks if the collection contains exactly the given <tt>mustHaveItems</tt>.
     * 
     * <p><b>Examples:</b><br>
     * <tt>containsOnly(Arrays.asList(new Integer[] { 1, 2, 3 }), Arrays.asList(new Integer[] { }))         --> false</tt><br>
     * <tt>containsOnly(Arrays.asList(new Integer[] { 1, 2, 3 }), Arrays.asList(new Integer[] { 1, 99 }))   --> false</tt><br>
     * <tt>containsOnly(Arrays.asList(new Integer[] { 1, 2, 3 }), Arrays.asList(new Integer[] { 1, 2, 3 })) --> true</tt>
     */
    public static <T> boolean containsExactly(Collection<T> list,
            Collection<T> mustHaveItems) {
        return list.containsAll(mustHaveItems)
                && mustHaveItems.containsAll(list);
    }
}

Related Tutorials