com.enofex.naikan.model.Teams 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 Teams extends AbstractContainer {
private static final Teams NO_TEAMS = new Teams(List.of());
public Teams(List teams) {
super(teams);
}
public static Teams empty() {
return NO_TEAMS;
}
public static Teams of(Team... teams) {
return new Teams(List.of(teams));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy