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

xpertss.ds.utils.Sets Maven / Gradle / Ivy

Go to download

A modern high speed connection pool that supports multiple connection types.

There is a newer version: 2.6
Show newest version
/**
 * 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