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