com.enofex.naikan.model.Environments Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of naikan-model Show documentation
Show all versions of naikan-model Show documentation
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