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

io.kubernetes.client.openapi.models.V1ListMetaBuilder 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;
import java.lang.Boolean;
public class V1ListMetaBuilder extends V1ListMetaFluentImpl implements VisitableBuilder{
  public V1ListMetaBuilder() {
    this(false);
  }
  public V1ListMetaBuilder(Boolean validationEnabled) {
    this(new V1ListMeta(), validationEnabled);
  }
  public V1ListMetaBuilder(V1ListMetaFluent fluent) {
    this(fluent, false);
  }
  public V1ListMetaBuilder(V1ListMetaFluent fluent,Boolean validationEnabled) {
    this(fluent, new V1ListMeta(), validationEnabled);
  }
  public V1ListMetaBuilder(V1ListMetaFluent fluent,V1ListMeta instance) {
    this(fluent, instance, false);
  }
  public V1ListMetaBuilder(V1ListMetaFluent fluent,V1ListMeta instance,Boolean validationEnabled) {
    this.fluent = fluent; 
    fluent.withContinue(instance.getContinue());

    fluent.withRemainingItemCount(instance.getRemainingItemCount());

    fluent.withResourceVersion(instance.getResourceVersion());

    fluent.withSelfLink(instance.getSelfLink());

    this.validationEnabled = validationEnabled; 
  }
  public V1ListMetaBuilder(V1ListMeta instance) {
    this(instance,false);
  }
  public V1ListMetaBuilder(V1ListMeta instance,Boolean validationEnabled) {
    this.fluent = this; 
    this.withContinue(instance.getContinue());

    this.withRemainingItemCount(instance.getRemainingItemCount());

    this.withResourceVersion(instance.getResourceVersion());

    this.withSelfLink(instance.getSelfLink());

    this.validationEnabled = validationEnabled; 
  }
  V1ListMetaFluent fluent;
  Boolean validationEnabled;
  public V1ListMeta build() {
    V1ListMeta buildable = new V1ListMeta();
    buildable.setContinue(fluent.getContinue());
    buildable.setRemainingItemCount(fluent.getRemainingItemCount());
    buildable.setResourceVersion(fluent.getResourceVersion());
    buildable.setSelfLink(fluent.getSelfLink());
    return buildable;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy