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

net.objectlab.kit.collections.ReadOnlyExpiringHashSetBuilder Maven / Gradle / Ivy

package net.objectlab.kit.collections;

/**
 * The builder in charge of providing the parameters for the Set.
 *
 * @author Benoit Xhenseval
 *
 * @param 
 */
public class ReadOnlyExpiringHashSetBuilder extends ReadOnlyExpiringCollectionBuilder {
    private final SetLoader loader;

    public ReadOnlyExpiringHashSetBuilder(final SetLoader loader) {
        super();
        this.loader = loader;
    }

    final SetLoader getLoader() {
        return loader;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy