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

com.enofex.naikan.model.Environments Maven / Gradle / Ivy

Go to download

The Naikan Model Module for Naikan the software inventory management tool for dev teams driven by our CI/CD pipeline.

The newest version!
package com.enofex.naikan.model;

import java.util.List;

public final class Environments extends AbstractContainer {

  private static final Environments NO_ENVIRONMENTS = new Environments(List.of());

  public Environments(List environments) {
    super(environments);
  }

  public static Environments empty() {
    return NO_ENVIRONMENTS;
  }

  public static Environments of(Environment... environments) {
    return new Environments(List.of(environments));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy