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

org.catools.common.facker.model.CRandomStates 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 CRandomStates extends CSet {
    public CRandomStates() {
    }

    public CRandomStates(CRandomState... c) {
        super(c);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy