org.catools.common.facker.model.CRandomStates 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.model;
import org.catools.common.collections.CSet;
import java.util.stream.Stream;
public class CRandomStates extends CSet {
public CRandomStates() {
}
public CRandomStates(CRandomState... c) {
super(c);
}
public CRandomStates(Stream stream) {
super(stream);
}
public CRandomStates(Iterable iterable) {
super(iterable);
}
}