org.catools.etl.model.CEtlItems Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of etl Show documentation
Show all versions of etl Show documentation
The base ETL to be used in other CATools project as a base contract.
package org.catools.etl.model;
import org.catools.common.collections.CSet;
import java.util.stream.Stream;
public class CEtlItems extends CSet {
public CEtlItems() {
}
public CEtlItems(CEtlItem... c) {
super(c);
}
public CEtlItems(Stream stream) {
super(stream);
}
public CEtlItems(Iterable iterable) {
super(iterable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy