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

org.hisp.dhis.util.CollectionUtils Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package org.hisp.dhis.util;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;

public class CollectionUtils
{
    @SafeVarargs
    public static  Set newImmutableSet( T... items )
    {
        Set set = new HashSet<>();

        for ( T item : items )
        {
            set.add( item );
        }

        return Collections.unmodifiableSet( set );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy