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