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

com.netflix.eureka2.utils.Sets Maven / Gradle / Ivy

The newest version!
package com.netflix.eureka2.utils;

import java.util.HashSet;

/**
 * @author David Liu
 */
public class Sets {

    public static  HashSet asSet(T... a) {
        HashSet result = new HashSet();
        for (T data : a) {
            result.add(data);
        }
        return result;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy