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

com.atlassian.bamboo.specs.util.SetBuilder Maven / Gradle / Ivy

There is a newer version: 10.1.0
Show newest version
package com.atlassian.bamboo.specs.util;

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

public class SetBuilder {
    private final LinkedHashSet set = new LinkedHashSet<>();

    public SetBuilder put(T t) {
        set.add(t);
        return this;
    }

    public Set build() {
        return set;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy