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

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

  private static final Contacts NO_CONTACTS = new Contacts(List.of());

  public Contacts(List contacts) {
    super(contacts);
  }

  public static Contacts empty() {
    return NO_CONTACTS;
  }

  public static Contacts of(Contact... contacts) {
    return new Contacts(List.of(contacts));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy