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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy