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

tech.jhipster.lite.module.domain.file.JHipsterFilesToMove Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
package tech.jhipster.lite.module.domain.file;

import java.util.Collection;
import java.util.stream.Stream;
import tech.jhipster.lite.shared.collection.domain.JHipsterCollections;

public record JHipsterFilesToMove(Collection files) {
  public JHipsterFilesToMove(Collection files) {
    this.files = JHipsterCollections.immutable(files);
  }

  public Stream stream() {
    return files().stream();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy