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

io.nuls.core.rpc.util.SetUtil Maven / Gradle / Ivy

package io.nuls.core.rpc.util;

import java.util.HashSet;
import java.util.Set;

public class SetUtil {

    public static  Set of(E... elements) {
        Set set = new HashSet<>();
        for (E e : elements) {
            set.add(e);
        }
        return set;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy