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

io.kubernetes.client.openapi.models.V1CronJobStatusFluent 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.time.OffsetDateTime;
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 V1CronJobStatusFluent> extends BaseFluent{
  public V1CronJobStatusFluent() {
  }
  
  public V1CronJobStatusFluent(V1CronJobStatus instance) {
    this.copyInstance(instance);
  }
  private ArrayList active;
  private OffsetDateTime lastScheduleTime;
  private OffsetDateTime lastSuccessfulTime;
  
  protected void copyInstance(V1CronJobStatus instance) {
    instance = (instance != null ? instance : new V1CronJobStatus());
    if (instance != null) {
          this.withActive(instance.getActive());
          this.withLastScheduleTime(instance.getLastScheduleTime());
          this.withLastSuccessfulTime(instance.getLastSuccessfulTime());
        }
  }
  
  public A addToActive(int index,V1ObjectReference item) {
    if (this.active == null) {this.active = new ArrayList();}
    V1ObjectReferenceBuilder builder = new V1ObjectReferenceBuilder(item);
    if (index < 0 || index >= active.size()) { _visitables.get("active").add(builder); active.add(builder); } else { _visitables.get("active").add(index, builder); active.add(index, builder);}
    return (A)this;
  }
  
  public A setToActive(int index,V1ObjectReference item) {
    if (this.active == null) {this.active = new ArrayList();}
    V1ObjectReferenceBuilder builder = new V1ObjectReferenceBuilder(item);
    if (index < 0 || index >= active.size()) { _visitables.get("active").add(builder); active.add(builder); } else { _visitables.get("active").set(index, builder); active.set(index, builder);}
    return (A)this;
  }
  
  public A addToActive(io.kubernetes.client.openapi.models.V1ObjectReference... items) {
    if (this.active == null) {this.active = new ArrayList();}
    for (V1ObjectReference item : items) {V1ObjectReferenceBuilder builder = new V1ObjectReferenceBuilder(item);_visitables.get("active").add(builder);this.active.add(builder);} return (A)this;
  }
  
  public A addAllToActive(Collection items) {
    if (this.active == null) {this.active = new ArrayList();}
    for (V1ObjectReference item : items) {V1ObjectReferenceBuilder builder = new V1ObjectReferenceBuilder(item);_visitables.get("active").add(builder);this.active.add(builder);} return (A)this;
  }
  
  public A removeFromActive(io.kubernetes.client.openapi.models.V1ObjectReference... items) {
    if (this.active == null) return (A)this;
    for (V1ObjectReference item : items) {V1ObjectReferenceBuilder builder = new V1ObjectReferenceBuilder(item);_visitables.get("active").remove(builder); this.active.remove(builder);} return (A)this;
  }
  
  public A removeAllFromActive(Collection items) {
    if (this.active == null) return (A)this;
    for (V1ObjectReference item : items) {V1ObjectReferenceBuilder builder = new V1ObjectReferenceBuilder(item);_visitables.get("active").remove(builder); this.active.remove(builder);} return (A)this;
  }
  
  public A removeMatchingFromActive(Predicate predicate) {
    if (active == null) return (A) this;
    final Iterator each = active.iterator();
    final List visitables = _visitables.get("active");
    while (each.hasNext()) {
      V1ObjectReferenceBuilder builder = each.next();
      if (predicate.test(builder)) {
        visitables.remove(builder);
        each.remove();
      }
    }
    return (A)this;
  }
  
  public List buildActive() {
    return this.active != null ? build(active) : null;
  }
  
  public V1ObjectReference buildActive(int index) {
    return this.active.get(index).build();
  }
  
  public V1ObjectReference buildFirstActive() {
    return this.active.get(0).build();
  }
  
  public V1ObjectReference buildLastActive() {
    return this.active.get(active.size() - 1).build();
  }
  
  public V1ObjectReference buildMatchingActive(Predicate predicate) {
      for (V1ObjectReferenceBuilder item : active) {
        if (predicate.test(item)) {
          return item.build();
        }
      }
      return null;
  }
  
  public boolean hasMatchingActive(Predicate predicate) {
      for (V1ObjectReferenceBuilder item : active) {
        if (predicate.test(item)) {
          return true;
        }
      }
      return false;
  }
  
  public A withActive(List active) {
    if (this.active != null) {
      this._visitables.get("active").clear();
    }
    if (active != null) {
        this.active = new ArrayList();
        for (V1ObjectReference item : active) {
          this.addToActive(item);
        }
    } else {
      this.active = null;
    }
    return (A) this;
  }
  
  public A withActive(io.kubernetes.client.openapi.models.V1ObjectReference... active) {
    if (this.active != null) {
        this.active.clear();
        _visitables.remove("active");
    }
    if (active != null) {
      for (V1ObjectReference item : active) {
        this.addToActive(item);
      }
    }
    return (A) this;
  }
  
  public boolean hasActive() {
    return this.active != null && !this.active.isEmpty();
  }
  
  public ActiveNested addNewActive() {
    return new ActiveNested(-1, null);
  }
  
  public ActiveNested addNewActiveLike(V1ObjectReference item) {
    return new ActiveNested(-1, item);
  }
  
  public ActiveNested setNewActiveLike(int index,V1ObjectReference item) {
    return new ActiveNested(index, item);
  }
  
  public ActiveNested editActive(int index) {
    if (active.size() <= index) throw new RuntimeException("Can't edit active. Index exceeds size.");
    return setNewActiveLike(index, buildActive(index));
  }
  
  public ActiveNested editFirstActive() {
    if (active.size() == 0) throw new RuntimeException("Can't edit first active. The list is empty.");
    return setNewActiveLike(0, buildActive(0));
  }
  
  public ActiveNested editLastActive() {
    int index = active.size() - 1;
    if (index < 0) throw new RuntimeException("Can't edit last active. The list is empty.");
    return setNewActiveLike(index, buildActive(index));
  }
  
  public ActiveNested editMatchingActive(Predicate predicate) {
    int index = -1;
    for (int i=0;i extends V1ObjectReferenceFluent> implements Nested{
    ActiveNested(int index,V1ObjectReference item) {
      this.index = index;
      this.builder = new V1ObjectReferenceBuilder(this, item);
    }
    V1ObjectReferenceBuilder builder;
    int index;
    
    public N and() {
      return (N) V1CronJobStatusFluent.this.setToActive(index,builder.build());
    }
    
    public N endActive() {
      return and();
    }
    
  
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy