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

io.kubernetes.client.openapi.models.V1alpha3CounterSetBuilder Maven / Gradle / Ivy

The newest version!
package io.kubernetes.client.openapi.models;

import io.kubernetes.client.fluent.VisitableBuilder;
public class V1alpha3CounterSetBuilder extends V1alpha3CounterSetFluent implements VisitableBuilder{
  public V1alpha3CounterSetBuilder() {
    this(new V1alpha3CounterSet());
  }
  
  public V1alpha3CounterSetBuilder(V1alpha3CounterSetFluent fluent) {
    this(fluent, new V1alpha3CounterSet());
  }
  
  public V1alpha3CounterSetBuilder(V1alpha3CounterSetFluent fluent,V1alpha3CounterSet instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public V1alpha3CounterSetBuilder(V1alpha3CounterSet instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  V1alpha3CounterSetFluent fluent;
  
  public V1alpha3CounterSet build() {
    V1alpha3CounterSet buildable = new V1alpha3CounterSet();
    buildable.setCounters(fluent.getCounters());
    buildable.setName(fluent.getName());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy