xpertss.ds.utils.Sets Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xdbcp Show documentation
Show all versions of xdbcp Show documentation
A modern high speed connection pool that supports multiple connection types.
/**
* Created By: cfloersch
* Date: 6/21/13
* Copyright 2013 XpertSoftware
*/
package xpertss.ds.utils;
import java.util.Collections;
import java.util.LinkedHashSet;
import java.util.Set;
public class Sets {
public static Set of(T ... items)
{
Set result = new LinkedHashSet(items.length);
Collections.addAll(result, items);
return Collections.unmodifiableSet(result);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy