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

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