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

org.catools.atlassian.scale.model.CZScalePlanExecutions Maven / Gradle / Ivy

The newest version!
package org.catools.atlassian.scale.model;

import org.catools.common.collections.CSet;

import java.util.stream.Stream;

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

  public CZScalePlanExecutions(CZScalePlanExecution... c) {
    super(c);
  }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy