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

uk.autores.handling.Sets Maven / Gradle / Ivy

There is a newer version: 11.0.35-beta
Show newest version
// Copyright 2023 https://github.com/autores-uk/autores/blob/main/LICENSE.txt
// SPDX-License-Identifier: Apache-2.0
package uk.autores.handling;

import java.util.Collections;
import java.util.LinkedHashSet;
import java.util.Set;

final class Sets {

    private Sets() {}

    static Set of(ConfigDef...defs) {
        Set set = new LinkedHashSet<>();
        Collections.addAll(set, defs);
        return set;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy