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

io.kubernetes.client.openapi.models.V1alpha3NetworkDeviceDataBuilder 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 V1alpha3NetworkDeviceDataBuilder extends V1alpha3NetworkDeviceDataFluent implements VisitableBuilder{
  public V1alpha3NetworkDeviceDataBuilder() {
    this(new V1alpha3NetworkDeviceData());
  }
  
  public V1alpha3NetworkDeviceDataBuilder(V1alpha3NetworkDeviceDataFluent fluent) {
    this(fluent, new V1alpha3NetworkDeviceData());
  }
  
  public V1alpha3NetworkDeviceDataBuilder(V1alpha3NetworkDeviceDataFluent fluent,V1alpha3NetworkDeviceData instance) {
    this.fluent = fluent;
    fluent.copyInstance(instance);
  }
  
  public V1alpha3NetworkDeviceDataBuilder(V1alpha3NetworkDeviceData instance) {
    this.fluent = this;
    this.copyInstance(instance);
  }
  V1alpha3NetworkDeviceDataFluent fluent;
  
  public V1alpha3NetworkDeviceData build() {
    V1alpha3NetworkDeviceData buildable = new V1alpha3NetworkDeviceData();
    buildable.setHardwareAddress(fluent.getHardwareAddress());
    buildable.setInterfaceName(fluent.getInterfaceName());
    buildable.setIps(fluent.getIps());
    return buildable;
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy