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

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

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

import io.kubernetes.client.fluent.VisitableBuilder;
public class V1StorageClassListBuilder extends V1StorageClassListFluent implements VisitableBuilder{
  public V1StorageClassListBuilder() {
    this(new V1StorageClassList());
  }
  
  public V1StorageClassListBuilder(V1StorageClassListFluent fluent) {
    this(fluent, new V1StorageClassList());
  }
  
  public V1StorageClassListBuilder(V1StorageClassListFluent fluent,V1StorageClassList instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public V1StorageClassListBuilder(V1StorageClassList instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  V1StorageClassListFluent fluent;
  
  public V1StorageClassList build() {
    V1StorageClassList buildable = new V1StorageClassList();
    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