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

io.sundr.model.PropertyRefBuilder 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 PropertyRefBuilder extends PropertyRefFluent implements VisitableBuilder{
  public PropertyRefBuilder() {
    this.fluent = this;
  }
  
  public PropertyRefBuilder(PropertyRefFluent fluent) {
    this.fluent = fluent;
  }
  
  public PropertyRefBuilder(PropertyRefFluent fluent,PropertyRef instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public PropertyRefBuilder(PropertyRef instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  PropertyRefFluent fluent;
  
  public PropertyRef build() {
    PropertyRef buildable = new PropertyRef(fluent.buildProperty(),fluent.buildScope());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy