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

org.catools.media.model.CDiffPoints Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package org.catools.media.model;

import org.catools.common.collections.CSet;

import java.util.stream.Stream;

public class CDiffPoints extends CSet {
    public CDiffPoints() {
    }

    public CDiffPoints(CDiffPoint... c) {
        super(c);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy