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

io.sundr.model.DeclareBuilder Maven / Gradle / Ivy

There is a newer version: 0.200.3
Show newest version
package io.sundr.model;

import io.sundr.builder.VisitableBuilder;
public class DeclareBuilder extends DeclareFluent implements VisitableBuilder{
  public DeclareBuilder() {
    this.fluent = this;
  }
  
  public DeclareBuilder(DeclareFluent fluent) {
    this.fluent = fluent;
  }
  
  public DeclareBuilder(DeclareFluent fluent,Declare instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public DeclareBuilder(Declare instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  DeclareFluent fluent;
  
  public Declare build() {
    Declare buildable = new Declare(fluent.buildProperties(),fluent.getValue());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy