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

io.kubernetes.client.openapi.models.V1SecretProjectionFluentImpl 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.SuppressWarnings;
import io.kubernetes.client.fluent.Nested;
import java.util.ArrayList;
import java.lang.String;
import java.util.function.Predicate;
import java.lang.Integer;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.util.Iterator;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.Boolean;

 /**
  * Generated
  */
  @SuppressWarnings(value = "unchecked")
  public class V1SecretProjectionFluentImpl> extends BaseFluent implements V1SecretProjectionFluent{
  public V1SecretProjectionFluentImpl() {
  }
  public V1SecretProjectionFluentImpl(V1SecretProjection instance) {
    this.withItems(instance.getItems());

    this.withName(instance.getName());

    this.withOptional(instance.getOptional());

  }
  private ArrayList items;
  private String name;
  private Boolean optional;
  public A addToItems(Integer index,V1KeyToPath item) {
    if (this.items == null) {this.items = new ArrayList();}
    V1KeyToPathBuilder builder = new V1KeyToPathBuilder(item);_visitables.get("items").add(index >= 0 ? index : _visitables.get("items").size(), builder);this.items.add(index >= 0 ? index : items.size(), builder); return (A)this;
  }
  public A setToItems(Integer index,V1KeyToPath item) {
    if (this.items == null) {this.items = new ArrayList();}
    V1KeyToPathBuilder builder = new V1KeyToPathBuilder(item);
    if (index < 0 || index >= _visitables.get("items").size()) { _visitables.get("items").add(builder); } else { _visitables.get("items").set(index, builder);}
    if (index < 0 || index >= items.size()) { items.add(builder); } else { items.set(index, builder);}
     return (A)this;
  }
  public A addToItems(io.kubernetes.client.openapi.models.V1KeyToPath... items) {
    if (this.items == null) {this.items = new ArrayList();}
    for (V1KeyToPath item : items) {V1KeyToPathBuilder builder = new V1KeyToPathBuilder(item);_visitables.get("items").add(builder);this.items.add(builder);} return (A)this;
  }
  public A addAllToItems(Collection items) {
    if (this.items == null) {this.items = new ArrayList();}
    for (V1KeyToPath item : items) {V1KeyToPathBuilder builder = new V1KeyToPathBuilder(item);_visitables.get("items").add(builder);this.items.add(builder);} return (A)this;
  }
  public A removeFromItems(io.kubernetes.client.openapi.models.V1KeyToPath... items) {
    for (V1KeyToPath item : items) {V1KeyToPathBuilder builder = new V1KeyToPathBuilder(item);_visitables.get("items").remove(builder);if (this.items != null) {this.items.remove(builder);}} return (A)this;
  }
  public A removeAllFromItems(Collection items) {
    for (V1KeyToPath item : items) {V1KeyToPathBuilder builder = new V1KeyToPathBuilder(item);_visitables.get("items").remove(builder);if (this.items != null) {this.items.remove(builder);}} return (A)this;
  }
  public A removeMatchingFromItems(Predicate predicate) {
    if (items == null) return (A) this;
    final Iterator each = items.iterator();
    final List visitables = _visitables.get("items");
    while (each.hasNext()) {
      V1KeyToPathBuilder builder = each.next();
      if (predicate.test(builder)) {
        visitables.remove(builder);
        each.remove();
      }
    }
    return (A)this;
  }
  
  /**
   * This method has been deprecated, please use method buildItems instead.
   * @return The buildable object.
   */
  @Deprecated
  public List getItems() {
    return items != null ? build(items) : null;
  }
  public List buildItems() {
    return items != null ? build(items) : null;
  }
  public V1KeyToPath buildItem(Integer index) {
    return this.items.get(index).build();
  }
  public V1KeyToPath buildFirstItem() {
    return this.items.get(0).build();
  }
  public V1KeyToPath buildLastItem() {
    return this.items.get(items.size() - 1).build();
  }
  public V1KeyToPath buildMatchingItem(Predicate predicate) {
    for (V1KeyToPathBuilder item: items) { if(predicate.test(item)){ return item.build();} } return null;
  }
  public Boolean hasMatchingItem(Predicate predicate) {
    for (V1KeyToPathBuilder item: items) { if(predicate.test(item)){ return true;} } return false;
  }
  public A withItems(List items) {
    if (this.items != null) { _visitables.get("items").removeAll(this.items);}
    if (items != null) {this.items = new ArrayList(); for (V1KeyToPath item : items){this.addToItems(item);}} else { this.items = null;} return (A) this;
  }
  public A withItems(io.kubernetes.client.openapi.models.V1KeyToPath... items) {
    if (this.items != null) {this.items.clear();}
    if (items != null) {for (V1KeyToPath item :items){ this.addToItems(item);}} return (A) this;
  }
  public Boolean hasItems() {
    return items != null && !items.isEmpty();
  }
  public V1SecretProjectionFluent.ItemsNested addNewItem() {
    return new V1SecretProjectionFluentImpl.ItemsNestedImpl();
  }
  public V1SecretProjectionFluent.ItemsNested addNewItemLike(V1KeyToPath item) {
    return new V1SecretProjectionFluentImpl.ItemsNestedImpl(-1, item);
  }
  public V1SecretProjectionFluent.ItemsNested setNewItemLike(Integer index,V1KeyToPath item) {
    return new V1SecretProjectionFluentImpl.ItemsNestedImpl(index, item);
  }
  public V1SecretProjectionFluent.ItemsNested editItem(Integer index) {
    if (items.size() <= index) throw new RuntimeException("Can't edit items. Index exceeds size.");
    return setNewItemLike(index, buildItem(index));
  }
  public V1SecretProjectionFluent.ItemsNested editFirstItem() {
    if (items.size() == 0) throw new RuntimeException("Can't edit first items. The list is empty.");
    return setNewItemLike(0, buildItem(0));
  }
  public V1SecretProjectionFluent.ItemsNested editLastItem() {
    int index = items.size() - 1;
    if (index < 0) throw new RuntimeException("Can't edit last items. The list is empty.");
    return setNewItemLike(index, buildItem(index));
  }
  public V1SecretProjectionFluent.ItemsNested editMatchingItem(Predicate predicate) {
    int index = -1;
    for (int i=0;i extends V1KeyToPathFluentImpl> implements V1SecretProjectionFluent.ItemsNested,Nested{
    ItemsNestedImpl(Integer index,V1KeyToPath item) {
      this.index = index;
      this.builder = new V1KeyToPathBuilder(this, item);
    }
    ItemsNestedImpl() {
      this.index = -1;
      this.builder = new V1KeyToPathBuilder(this);
    }
    V1KeyToPathBuilder builder;
    Integer index;
    public N and() {
      return (N) V1SecretProjectionFluentImpl.this.setToItems(index,builder.build());
    }
    public N endItem() {
      return and();
    }
    
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy