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

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

public record Branch(String name) {

  public static Builder builder() {
    return new Builder();
  }

  public static final class Builder {

    private String name;

    private Builder() {
    }

    public Builder name(String name) {
      this.name = name;
      return this;
    }

    public Branch build() {
      return new Branch(this.name);
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy