org.hisp.dhis.util.CollectionUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dhis2-java-client Show documentation
Show all versions of dhis2-java-client Show documentation
DHIS 2 API client for Java.
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