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

org.catools.common.facker.provider.CFakerStateProviders Maven / Gradle / Ivy

There is a newer version: 0.1.25
Show newest version
package org.catools.common.facker.provider;

import org.catools.common.collections.CSet;

import java.util.stream.Stream;

public class CFakerStateProviders extends CSet {
    public CFakerStateProviders() {
    }

    public CFakerStateProviders(CFakerStateProvider... c) {
        super(c);
    }

    public CFakerStateProviders(Stream stream) {
        super(stream);
    }

    public CFakerStateProviders(Iterable iterable) {
        super(iterable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy