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

io.sundr.model.LambdaBuilder 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 LambdaBuilder extends LambdaFluent implements VisitableBuilder{
  public LambdaBuilder() {
    this.fluent = this;
  }
  
  public LambdaBuilder(LambdaFluent fluent) {
    this.fluent = fluent;
  }
  
  public LambdaBuilder(LambdaFluent fluent,Lambda instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public LambdaBuilder(Lambda instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  LambdaFluent fluent;
  
  public Lambda build() {
    Lambda buildable = new Lambda(fluent.getParameters(),fluent.buildStatement());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy