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

com.enofex.naikan.model.Developers 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 Developers extends AbstractContainer {

  private static final Developers NO_DEVELOPERS = new Developers(List.of());

  public Developers(List developers) {
    super(developers);
  }

  public static Developers empty() {
    return NO_DEVELOPERS;
  }

  public static Developers of(Developer... developers) {
    return new Developers(List.of(developers));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy