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

io.sundr.model.SourceBuilder 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 SourceBuilder extends SourceFluent implements VisitableBuilder{
  public SourceBuilder() {
    this(new Source());
  }
  
  public SourceBuilder(SourceFluent fluent) {
    this(fluent, new Source());
  }
  
  public SourceBuilder(SourceFluent fluent,Source instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public SourceBuilder(Source instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  SourceFluent fluent;
  
  public Source build() {
    Source buildable = new Source(fluent.buildTypes());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy