org.catools.common.facker.provider.CFakerStateProviders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-randomize Show documentation
Show all versions of common-randomize Show documentation
The Common Randomize Implementation
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);
}
}