io.kubernetes.client.openapi.models.V1MutatingWebhookConfigurationFluentImpl 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 java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.util.Iterator;
import java.util.List;
import java.lang.Boolean;
import java.util.Collection;
import java.lang.Object;
/**
* Generated
*/
@SuppressWarnings(value = "unchecked")
public class V1MutatingWebhookConfigurationFluentImpl> extends BaseFluent implements V1MutatingWebhookConfigurationFluent{
public V1MutatingWebhookConfigurationFluentImpl() {
}
public V1MutatingWebhookConfigurationFluentImpl(V1MutatingWebhookConfiguration instance) {
if (instance != null) {
this.withApiVersion(instance.getApiVersion());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
this.withWebhooks(instance.getWebhooks());
}
}
private String apiVersion;
private String kind;
private V1ObjectMetaBuilder metadata;
private ArrayList webhooks;
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;
}
/**
* This method has been deprecated, please use method buildMetadata instead.
* @return The buildable object.
*/
@Deprecated
public V1ObjectMeta getMetadata() {
return this.metadata!=null ?this.metadata.build():null;
}
public V1ObjectMeta buildMetadata() {
return this.metadata!=null ?this.metadata.build():null;
}
public A withMetadata(V1ObjectMeta metadata) {
_visitables.get("metadata").remove(this.metadata);
if (metadata!=null){ this.metadata= new V1ObjectMetaBuilder(metadata); _visitables.get("metadata").add(this.metadata);} else { this.metadata = null; _visitables.get("metadata").remove(this.metadata); } return (A) this;
}
public Boolean hasMetadata() {
return this.metadata != null;
}
public V1MutatingWebhookConfigurationFluentImpl.MetadataNested withNewMetadata() {
return new V1MutatingWebhookConfigurationFluentImpl.MetadataNestedImpl();
}
public V1MutatingWebhookConfigurationFluentImpl.MetadataNested withNewMetadataLike(V1ObjectMeta item) {
return new V1MutatingWebhookConfigurationFluentImpl.MetadataNestedImpl(item);
}
public V1MutatingWebhookConfigurationFluentImpl.MetadataNested editMetadata() {
return withNewMetadataLike(getMetadata());
}
public V1MutatingWebhookConfigurationFluentImpl.MetadataNested editOrNewMetadata() {
return withNewMetadataLike(getMetadata() != null ? getMetadata(): new V1ObjectMetaBuilder().build());
}
public V1MutatingWebhookConfigurationFluentImpl.MetadataNested editOrNewMetadataLike(V1ObjectMeta item) {
return withNewMetadataLike(getMetadata() != null ? getMetadata(): 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) {
for (V1MutatingWebhook item : items) {V1MutatingWebhookBuilder builder = new V1MutatingWebhookBuilder(item);_visitables.get("webhooks").remove(builder);if (this.webhooks != null) {this.webhooks.remove(builder);}} return (A)this;
}
public A removeAllFromWebhooks(Collection items) {
for (V1MutatingWebhook item : items) {V1MutatingWebhookBuilder builder = new V1MutatingWebhookBuilder(item);_visitables.get("webhooks").remove(builder);if (this.webhooks != null) {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;
}
/**
* This method has been deprecated, please use method buildWebhooks instead.
* @return The buildable object.
*/
@Deprecated
public List getWebhooks() {
return webhooks != null ? build(webhooks) : null;
}
public List buildWebhooks() {
return 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) { _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 webhooks != null && !webhooks.isEmpty();
}
public V1MutatingWebhookConfigurationFluentImpl.WebhooksNested addNewWebhook() {
return new V1MutatingWebhookConfigurationFluentImpl.WebhooksNestedImpl();
}
public V1MutatingWebhookConfigurationFluentImpl.WebhooksNested addNewWebhookLike(V1MutatingWebhook item) {
return new V1MutatingWebhookConfigurationFluentImpl.WebhooksNestedImpl(-1, item);
}
public V1MutatingWebhookConfigurationFluentImpl.WebhooksNested setNewWebhookLike(int index,V1MutatingWebhook item) {
return new V1MutatingWebhookConfigurationFluentImpl.WebhooksNestedImpl(index, item);
}
public V1MutatingWebhookConfigurationFluentImpl.WebhooksNested editWebhook(int index) {
if (webhooks.size() <= index) throw new RuntimeException("Can't edit webhooks. Index exceeds size.");
return setNewWebhookLike(index, buildWebhook(index));
}
public V1MutatingWebhookConfigurationFluentImpl.WebhooksNested editFirstWebhook() {
if (webhooks.size() == 0) throw new RuntimeException("Can't edit first webhooks. The list is empty.");
return setNewWebhookLike(0, buildWebhook(0));
}
public V1MutatingWebhookConfigurationFluentImpl.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 V1MutatingWebhookConfigurationFluentImpl.WebhooksNested editMatchingWebhook(Predicate predicate) {
int index = -1;
for (int i=0;i extends V1ObjectMetaFluentImpl> implements V1MutatingWebhookConfigurationFluentImpl.MetadataNested,Nested{
MetadataNestedImpl(V1ObjectMeta item) {
this.builder = new V1ObjectMetaBuilder(this, item);
}
MetadataNestedImpl() {
this.builder = new V1ObjectMetaBuilder(this);
}
V1ObjectMetaBuilder builder;
public N and() {
return (N) V1MutatingWebhookConfigurationFluentImpl.this.withMetadata(builder.build());
}
public N endMetadata() {
return and();
}
}
class WebhooksNestedImpl extends V1MutatingWebhookFluentImpl> implements V1MutatingWebhookConfigurationFluentImpl.WebhooksNested,Nested{
WebhooksNestedImpl(int index,V1MutatingWebhook item) {
this.index = index;
this.builder = new V1MutatingWebhookBuilder(this, item);
}
WebhooksNestedImpl() {
this.index = -1;
this.builder = new V1MutatingWebhookBuilder(this);
}
V1MutatingWebhookBuilder builder;
int index;
public N and() {
return (N) V1MutatingWebhookConfigurationFluentImpl.this.setToWebhooks(index,builder.build());
}
public N endWebhook() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy