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

com.enofex.naikan.model.Teams 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 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