org.catools.common.facker.model.CRandomCities 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 CRandomCities extends CSet {
public CRandomCities() {
}
public CRandomCities(CRandomCity... c) {
super(c);
}
public CRandomCities(Stream stream) {
super(stream);
}
public CRandomCities(Iterable iterable) {
super(iterable);
}
}