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

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

package io.kubernetes.client.openapi.models;

import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.Nested;
import java.util.ArrayList;
import java.lang.String;
import java.util.function.Predicate;
import io.kubernetes.client.fluent.BaseFluent;
import java.util.Iterator;
import java.util.Collection;
import java.lang.Object;
import java.util.List;

/**
 * Generated
 */
@SuppressWarnings("unchecked")
public class V1MutatingWebhookConfigurationFluent> extends BaseFluent{
  public V1MutatingWebhookConfigurationFluent() {
  }
  
  public V1MutatingWebhookConfigurationFluent(V1MutatingWebhookConfiguration instance) {
    this.copyInstance(instance);
  }
  private String apiVersion;
  private String kind;
  private V1ObjectMetaBuilder metadata;
  private ArrayList webhooks;
  
  protected void copyInstance(V1MutatingWebhookConfiguration instance) {
    instance = (instance != null ? instance : new V1MutatingWebhookConfiguration());
    if (instance != null) {
          this.withApiVersion(instance.getApiVersion());
          this.withKind(instance.getKind());
          this.withMetadata(instance.getMetadata());
          this.withWebhooks(instance.getWebhooks());
        }
  }
  
  public String getApiVersion() {
    return this.apiVersion;
  }
  
  public A withApiVersion(String apiVersion) {
    this.apiVersion = apiVersion;
    return (A) this;
  }
  
  public boolean hasApiVersion() {
    return this.apiVersion != null;
  }
  
  public String getKind() {
    return this.kind;
  }
  
  public A withKind(String kind) {
    this.kind = kind;
    return (A) this;
  }
  
  public boolean hasKind() {
    return this.kind != null;
  }
  
  public V1ObjectMeta buildMetadata() {
    return this.metadata != null ? this.metadata.build() : null;
  }
  
  public A withMetadata(V1ObjectMeta metadata) {
    this._visitables.remove("metadata");
    if (metadata != null) {
        this.metadata = new V1ObjectMetaBuilder(metadata);
        this._visitables.get("metadata").add(this.metadata);
    } else {
        this.metadata = null;
        this._visitables.get("metadata").remove(this.metadata);
    }
    return (A) this;
  }
  
  public boolean hasMetadata() {
    return this.metadata != null;
  }
  
  public MetadataNested withNewMetadata() {
    return new MetadataNested(null);
  }
  
  public MetadataNested withNewMetadataLike(V1ObjectMeta item) {
    return new MetadataNested(item);
  }
  
  public MetadataNested editMetadata() {
    return withNewMetadataLike(java.util.Optional.ofNullable(buildMetadata()).orElse(null));
  }
  
  public MetadataNested editOrNewMetadata() {
    return withNewMetadataLike(java.util.Optional.ofNullable(buildMetadata()).orElse(new V1ObjectMetaBuilder().build()));
  }
  
  public MetadataNested editOrNewMetadataLike(V1ObjectMeta item) {
    return withNewMetadataLike(java.util.Optional.ofNullable(buildMetadata()).orElse(item));
  }
  
  public A addToWebhooks(int index,V1MutatingWebhook item) {
    if (this.webhooks == null) {this.webhooks = new ArrayList();}
    V1MutatingWebhookBuilder builder = new V1MutatingWebhookBuilder(item);
    if (index < 0 || index >= webhooks.size()) { _visitables.get("webhooks").add(builder); webhooks.add(builder); } else { _visitables.get("webhooks").add(index, builder); webhooks.add(index, builder);}
    return (A)this;
  }
  
  public A setToWebhooks(int index,V1MutatingWebhook item) {
    if (this.webhooks == null) {this.webhooks = new ArrayList();}
    V1MutatingWebhookBuilder builder = new V1MutatingWebhookBuilder(item);
    if (index < 0 || index >= webhooks.size()) { _visitables.get("webhooks").add(builder); webhooks.add(builder); } else { _visitables.get("webhooks").set(index, builder); webhooks.set(index, builder);}
    return (A)this;
  }
  
  public A addToWebhooks(io.kubernetes.client.openapi.models.V1MutatingWebhook... items) {
    if (this.webhooks == null) {this.webhooks = new ArrayList();}
    for (V1MutatingWebhook item : items) {V1MutatingWebhookBuilder builder = new V1MutatingWebhookBuilder(item);_visitables.get("webhooks").add(builder);this.webhooks.add(builder);} return (A)this;
  }
  
  public A addAllToWebhooks(Collection items) {
    if (this.webhooks == null) {this.webhooks = new ArrayList();}
    for (V1MutatingWebhook item : items) {V1MutatingWebhookBuilder builder = new V1MutatingWebhookBuilder(item);_visitables.get("webhooks").add(builder);this.webhooks.add(builder);} return (A)this;
  }
  
  public A removeFromWebhooks(io.kubernetes.client.openapi.models.V1MutatingWebhook... items) {
    if (this.webhooks == null) return (A)this;
    for (V1MutatingWebhook item : items) {V1MutatingWebhookBuilder builder = new V1MutatingWebhookBuilder(item);_visitables.get("webhooks").remove(builder); this.webhooks.remove(builder);} return (A)this;
  }
  
  public A removeAllFromWebhooks(Collection items) {
    if (this.webhooks == null) return (A)this;
    for (V1MutatingWebhook item : items) {V1MutatingWebhookBuilder builder = new V1MutatingWebhookBuilder(item);_visitables.get("webhooks").remove(builder); this.webhooks.remove(builder);} return (A)this;
  }
  
  public A removeMatchingFromWebhooks(Predicate predicate) {
    if (webhooks == null) return (A) this;
    final Iterator each = webhooks.iterator();
    final List visitables = _visitables.get("webhooks");
    while (each.hasNext()) {
      V1MutatingWebhookBuilder builder = each.next();
      if (predicate.test(builder)) {
        visitables.remove(builder);
        each.remove();
      }
    }
    return (A)this;
  }
  
  public List buildWebhooks() {
    return this.webhooks != null ? build(webhooks) : null;
  }
  
  public V1MutatingWebhook buildWebhook(int index) {
    return this.webhooks.get(index).build();
  }
  
  public V1MutatingWebhook buildFirstWebhook() {
    return this.webhooks.get(0).build();
  }
  
  public V1MutatingWebhook buildLastWebhook() {
    return this.webhooks.get(webhooks.size() - 1).build();
  }
  
  public V1MutatingWebhook buildMatchingWebhook(Predicate predicate) {
      for (V1MutatingWebhookBuilder item : webhooks) {
        if (predicate.test(item)) {
          return item.build();
        }
      }
      return null;
  }
  
  public boolean hasMatchingWebhook(Predicate predicate) {
      for (V1MutatingWebhookBuilder item : webhooks) {
        if (predicate.test(item)) {
          return true;
        }
      }
      return false;
  }
  
  public A withWebhooks(List webhooks) {
    if (this.webhooks != null) {
      this._visitables.get("webhooks").clear();
    }
    if (webhooks != null) {
        this.webhooks = new ArrayList();
        for (V1MutatingWebhook item : webhooks) {
          this.addToWebhooks(item);
        }
    } else {
      this.webhooks = null;
    }
    return (A) this;
  }
  
  public A withWebhooks(io.kubernetes.client.openapi.models.V1MutatingWebhook... webhooks) {
    if (this.webhooks != null) {
        this.webhooks.clear();
        _visitables.remove("webhooks");
    }
    if (webhooks != null) {
      for (V1MutatingWebhook item : webhooks) {
        this.addToWebhooks(item);
      }
    }
    return (A) this;
  }
  
  public boolean hasWebhooks() {
    return this.webhooks != null && !this.webhooks.isEmpty();
  }
  
  public WebhooksNested addNewWebhook() {
    return new WebhooksNested(-1, null);
  }
  
  public WebhooksNested addNewWebhookLike(V1MutatingWebhook item) {
    return new WebhooksNested(-1, item);
  }
  
  public WebhooksNested setNewWebhookLike(int index,V1MutatingWebhook item) {
    return new WebhooksNested(index, item);
  }
  
  public WebhooksNested editWebhook(int index) {
    if (webhooks.size() <= index) throw new RuntimeException("Can't edit webhooks. Index exceeds size.");
    return setNewWebhookLike(index, buildWebhook(index));
  }
  
  public WebhooksNested editFirstWebhook() {
    if (webhooks.size() == 0) throw new RuntimeException("Can't edit first webhooks. The list is empty.");
    return setNewWebhookLike(0, buildWebhook(0));
  }
  
  public WebhooksNested editLastWebhook() {
    int index = webhooks.size() - 1;
    if (index < 0) throw new RuntimeException("Can't edit last webhooks. The list is empty.");
    return setNewWebhookLike(index, buildWebhook(index));
  }
  
  public WebhooksNested editMatchingWebhook(Predicate predicate) {
    int index = -1;
    for (int i=0;i extends V1ObjectMetaFluent> implements Nested{
    MetadataNested(V1ObjectMeta item) {
      this.builder = new V1ObjectMetaBuilder(this, item);
    }
    V1ObjectMetaBuilder builder;
    
    public N and() {
      return (N) V1MutatingWebhookConfigurationFluent.this.withMetadata(builder.build());
    }
    
    public N endMetadata() {
      return and();
    }
    
  
  }
  public class WebhooksNested extends V1MutatingWebhookFluent> implements Nested{
    WebhooksNested(int index,V1MutatingWebhook item) {
      this.index = index;
      this.builder = new V1MutatingWebhookBuilder(this, item);
    }
    V1MutatingWebhookBuilder builder;
    int index;
    
    public N and() {
      return (N) V1MutatingWebhookConfigurationFluent.this.setToWebhooks(index,builder.build());
    }
    
    public N endWebhook() {
      return and();
    }
    
  
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy