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

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

There is a newer version: 22.0.0
Show newest version
package io.kubernetes.client.openapi.models;

import io.kubernetes.client.fluent.VisitableBuilder;
public class V1ComponentStatusListBuilder extends V1ComponentStatusListFluent implements VisitableBuilder{
  public V1ComponentStatusListBuilder() {
    this(new V1ComponentStatusList());
  }
  
  public V1ComponentStatusListBuilder(V1ComponentStatusListFluent fluent) {
    this(fluent, new V1ComponentStatusList());
  }
  
  public V1ComponentStatusListBuilder(V1ComponentStatusListFluent fluent,V1ComponentStatusList instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public V1ComponentStatusListBuilder(V1ComponentStatusList instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  V1ComponentStatusListFluent fluent;
  
  public V1ComponentStatusList build() {
    V1ComponentStatusList buildable = new V1ComponentStatusList();
    buildable.setApiVersion(fluent.getApiVersion());
    buildable.setItems(fluent.buildItems());
    buildable.setKind(fluent.getKind());
    buildable.setMetadata(fluent.buildMetadata());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy