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

org.catools.common.facker.model.CRandomCities Maven / Gradle / Ivy

There is a newer version: 0.1.25
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy