com.netflix.eureka2.utils.Sets Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eureka-core Show documentation
Show all versions of eureka-core Show documentation
eureka-core developed by Netflix
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