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

org.catools.atlassian.scale.model.CZScaleChangeHistoryItems 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 CZScaleChangeHistoryItems extends CSet {
  public CZScaleChangeHistoryItems() {
  }

  public CZScaleChangeHistoryItems(CZScaleChangeHistoryItem... c) {
    super(c);
  }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy