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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy