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

io.fabric8.openclustermanagement.api.model.app.k8s.v1beta1.ApplicationStatusFluent Maven / Gradle / Ivy

package io.fabric8.openclustermanagement.api.model.app.k8s.v1beta1;

import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.Nested;
import java.util.ArrayList;
import java.lang.String;
import java.util.LinkedHashMap;
import java.util.function.Predicate;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.util.Iterator;
import java.util.List;
import java.lang.Long;
import java.util.Collection;
import java.lang.Object;
import java.util.Map;

/**
 * Generated
 */
@SuppressWarnings("unchecked")
public class ApplicationStatusFluent> extends BaseFluent{
  public ApplicationStatusFluent() {
  }
  
  public ApplicationStatusFluent(ApplicationStatus instance) {
    this.copyInstance(instance);
  }
  private ArrayList components = new ArrayList();
  private String componentsReady;
  private ArrayList conditions = new ArrayList();
  private Long observedGeneration;
  private Map additionalProperties;
  
  protected void copyInstance(ApplicationStatus instance) {
    instance = (instance != null ? instance : new ApplicationStatus());
    if (instance != null) {
          this.withComponents(instance.getComponents());
          this.withComponentsReady(instance.getComponentsReady());
          this.withConditions(instance.getConditions());
          this.withObservedGeneration(instance.getObservedGeneration());
          this.withAdditionalProperties(instance.getAdditionalProperties());
        }
  }
  
  public A addToComponents(int index,ObjectStatus item) {
    if (this.components == null) {this.components = new ArrayList();}
    ObjectStatusBuilder builder = new ObjectStatusBuilder(item);
    if (index < 0 || index >= components.size()) { _visitables.get("components").add(builder); components.add(builder); } else { _visitables.get("components").add(index, builder); components.add(index, builder);}
    return (A)this;
  }
  
  public A setToComponents(int index,ObjectStatus item) {
    if (this.components == null) {this.components = new ArrayList();}
    ObjectStatusBuilder builder = new ObjectStatusBuilder(item);
    if (index < 0 || index >= components.size()) { _visitables.get("components").add(builder); components.add(builder); } else { _visitables.get("components").set(index, builder); components.set(index, builder);}
    return (A)this;
  }
  
  public A addToComponents(io.fabric8.openclustermanagement.api.model.app.k8s.v1beta1.ObjectStatus... items) {
    if (this.components == null) {this.components = new ArrayList();}
    for (ObjectStatus item : items) {ObjectStatusBuilder builder = new ObjectStatusBuilder(item);_visitables.get("components").add(builder);this.components.add(builder);} return (A)this;
  }
  
  public A addAllToComponents(Collection items) {
    if (this.components == null) {this.components = new ArrayList();}
    for (ObjectStatus item : items) {ObjectStatusBuilder builder = new ObjectStatusBuilder(item);_visitables.get("components").add(builder);this.components.add(builder);} return (A)this;
  }
  
  public A removeFromComponents(io.fabric8.openclustermanagement.api.model.app.k8s.v1beta1.ObjectStatus... items) {
    if (this.components == null) return (A)this;
    for (ObjectStatus item : items) {ObjectStatusBuilder builder = new ObjectStatusBuilder(item);_visitables.get("components").remove(builder); this.components.remove(builder);} return (A)this;
  }
  
  public A removeAllFromComponents(Collection items) {
    if (this.components == null) return (A)this;
    for (ObjectStatus item : items) {ObjectStatusBuilder builder = new ObjectStatusBuilder(item);_visitables.get("components").remove(builder); this.components.remove(builder);} return (A)this;
  }
  
  public A removeMatchingFromComponents(Predicate predicate) {
    if (components == null) return (A) this;
    final Iterator each = components.iterator();
    final List visitables = _visitables.get("components");
    while (each.hasNext()) {
      ObjectStatusBuilder builder = each.next();
      if (predicate.test(builder)) {
        visitables.remove(builder);
        each.remove();
      }
    }
    return (A)this;
  }
  
  public List buildComponents() {
    return this.components != null ? build(components) : null;
  }
  
  public ObjectStatus buildComponent(int index) {
    return this.components.get(index).build();
  }
  
  public ObjectStatus buildFirstComponent() {
    return this.components.get(0).build();
  }
  
  public ObjectStatus buildLastComponent() {
    return this.components.get(components.size() - 1).build();
  }
  
  public ObjectStatus buildMatchingComponent(Predicate predicate) {
      for (ObjectStatusBuilder item : components) {
        if (predicate.test(item)) {
          return item.build();
        }
      }
      return null;
  }
  
  public boolean hasMatchingComponent(Predicate predicate) {
      for (ObjectStatusBuilder item : components) {
        if (predicate.test(item)) {
          return true;
        }
      }
      return false;
  }
  
  public A withComponents(List components) {
    if (this.components != null) {
      this._visitables.get("components").clear();
    }
    if (components != null) {
        this.components = new ArrayList();
        for (ObjectStatus item : components) {
          this.addToComponents(item);
        }
    } else {
      this.components = null;
    }
    return (A) this;
  }
  
  public A withComponents(io.fabric8.openclustermanagement.api.model.app.k8s.v1beta1.ObjectStatus... components) {
    if (this.components != null) {
        this.components.clear();
        _visitables.remove("components");
    }
    if (components != null) {
      for (ObjectStatus item : components) {
        this.addToComponents(item);
      }
    }
    return (A) this;
  }
  
  public boolean hasComponents() {
    return this.components != null && !this.components.isEmpty();
  }
  
  public A addNewComponent(String group,String kind,String link,String name,String status) {
    return (A)addToComponents(new ObjectStatus(group, kind, link, name, status));
  }
  
  public ComponentsNested addNewComponent() {
    return new ComponentsNested(-1, null);
  }
  
  public ComponentsNested addNewComponentLike(ObjectStatus item) {
    return new ComponentsNested(-1, item);
  }
  
  public ComponentsNested setNewComponentLike(int index,ObjectStatus item) {
    return new ComponentsNested(index, item);
  }
  
  public ComponentsNested editComponent(int index) {
    if (components.size() <= index) throw new RuntimeException("Can't edit components. Index exceeds size.");
    return setNewComponentLike(index, buildComponent(index));
  }
  
  public ComponentsNested editFirstComponent() {
    if (components.size() == 0) throw new RuntimeException("Can't edit first components. The list is empty.");
    return setNewComponentLike(0, buildComponent(0));
  }
  
  public ComponentsNested editLastComponent() {
    int index = components.size() - 1;
    if (index < 0) throw new RuntimeException("Can't edit last components. The list is empty.");
    return setNewComponentLike(index, buildComponent(index));
  }
  
  public ComponentsNested editMatchingComponent(Predicate predicate) {
    int index = -1;
    for (int i=0;i();}
    ConditionBuilder builder = new ConditionBuilder(item);
    if (index < 0 || index >= conditions.size()) { _visitables.get("conditions").add(builder); conditions.add(builder); } else { _visitables.get("conditions").add(index, builder); conditions.add(index, builder);}
    return (A)this;
  }
  
  public A setToConditions(int index,Condition item) {
    if (this.conditions == null) {this.conditions = new ArrayList();}
    ConditionBuilder builder = new ConditionBuilder(item);
    if (index < 0 || index >= conditions.size()) { _visitables.get("conditions").add(builder); conditions.add(builder); } else { _visitables.get("conditions").set(index, builder); conditions.set(index, builder);}
    return (A)this;
  }
  
  public A addToConditions(io.fabric8.openclustermanagement.api.model.app.k8s.v1beta1.Condition... items) {
    if (this.conditions == null) {this.conditions = new ArrayList();}
    for (Condition item : items) {ConditionBuilder builder = new ConditionBuilder(item);_visitables.get("conditions").add(builder);this.conditions.add(builder);} return (A)this;
  }
  
  public A addAllToConditions(Collection items) {
    if (this.conditions == null) {this.conditions = new ArrayList();}
    for (Condition item : items) {ConditionBuilder builder = new ConditionBuilder(item);_visitables.get("conditions").add(builder);this.conditions.add(builder);} return (A)this;
  }
  
  public A removeFromConditions(io.fabric8.openclustermanagement.api.model.app.k8s.v1beta1.Condition... items) {
    if (this.conditions == null) return (A)this;
    for (Condition item : items) {ConditionBuilder builder = new ConditionBuilder(item);_visitables.get("conditions").remove(builder); this.conditions.remove(builder);} return (A)this;
  }
  
  public A removeAllFromConditions(Collection items) {
    if (this.conditions == null) return (A)this;
    for (Condition item : items) {ConditionBuilder builder = new ConditionBuilder(item);_visitables.get("conditions").remove(builder); this.conditions.remove(builder);} return (A)this;
  }
  
  public A removeMatchingFromConditions(Predicate predicate) {
    if (conditions == null) return (A) this;
    final Iterator each = conditions.iterator();
    final List visitables = _visitables.get("conditions");
    while (each.hasNext()) {
      ConditionBuilder builder = each.next();
      if (predicate.test(builder)) {
        visitables.remove(builder);
        each.remove();
      }
    }
    return (A)this;
  }
  
  public List buildConditions() {
    return this.conditions != null ? build(conditions) : null;
  }
  
  public Condition buildCondition(int index) {
    return this.conditions.get(index).build();
  }
  
  public Condition buildFirstCondition() {
    return this.conditions.get(0).build();
  }
  
  public Condition buildLastCondition() {
    return this.conditions.get(conditions.size() - 1).build();
  }
  
  public Condition buildMatchingCondition(Predicate predicate) {
      for (ConditionBuilder item : conditions) {
        if (predicate.test(item)) {
          return item.build();
        }
      }
      return null;
  }
  
  public boolean hasMatchingCondition(Predicate predicate) {
      for (ConditionBuilder item : conditions) {
        if (predicate.test(item)) {
          return true;
        }
      }
      return false;
  }
  
  public A withConditions(List conditions) {
    if (this.conditions != null) {
      this._visitables.get("conditions").clear();
    }
    if (conditions != null) {
        this.conditions = new ArrayList();
        for (Condition item : conditions) {
          this.addToConditions(item);
        }
    } else {
      this.conditions = null;
    }
    return (A) this;
  }
  
  public A withConditions(io.fabric8.openclustermanagement.api.model.app.k8s.v1beta1.Condition... conditions) {
    if (this.conditions != null) {
        this.conditions.clear();
        _visitables.remove("conditions");
    }
    if (conditions != null) {
      for (Condition item : conditions) {
        this.addToConditions(item);
      }
    }
    return (A) this;
  }
  
  public boolean hasConditions() {
    return this.conditions != null && !this.conditions.isEmpty();
  }
  
  public ConditionsNested addNewCondition() {
    return new ConditionsNested(-1, null);
  }
  
  public ConditionsNested addNewConditionLike(Condition item) {
    return new ConditionsNested(-1, item);
  }
  
  public ConditionsNested setNewConditionLike(int index,Condition item) {
    return new ConditionsNested(index, item);
  }
  
  public ConditionsNested editCondition(int index) {
    if (conditions.size() <= index) throw new RuntimeException("Can't edit conditions. Index exceeds size.");
    return setNewConditionLike(index, buildCondition(index));
  }
  
  public ConditionsNested editFirstCondition() {
    if (conditions.size() == 0) throw new RuntimeException("Can't edit first conditions. The list is empty.");
    return setNewConditionLike(0, buildCondition(0));
  }
  
  public ConditionsNested editLastCondition() {
    int index = conditions.size() - 1;
    if (index < 0) throw new RuntimeException("Can't edit last conditions. The list is empty.");
    return setNewConditionLike(index, buildCondition(index));
  }
  
  public ConditionsNested editMatchingCondition(Predicate predicate) {
    int index = -1;
    for (int i=0;i map) {
    if(this.additionalProperties == null && map != null) { this.additionalProperties = new LinkedHashMap(); }
    if(map != null) { this.additionalProperties.putAll(map);} return (A)this;
  }
  
  public A removeFromAdditionalProperties(String key) {
    if(this.additionalProperties == null) { return (A) this; }
    if(key != null && this.additionalProperties != null) {this.additionalProperties.remove(key);} return (A)this;
  }
  
  public A removeFromAdditionalProperties(Map map) {
    if(this.additionalProperties == null) { return (A) this; }
    if(map != null) { for(Object key : map.keySet()) {if (this.additionalProperties != null){this.additionalProperties.remove(key);}}} return (A)this;
  }
  
  public Map getAdditionalProperties() {
    return this.additionalProperties;
  }
  
  public A withAdditionalProperties(Map additionalProperties) {
    if (additionalProperties == null) {
      this.additionalProperties = null;
    } else {
      this.additionalProperties = new LinkedHashMap(additionalProperties);
    }
    return (A) this;
  }
  
  public boolean hasAdditionalProperties() {
    return this.additionalProperties != null;
  }
  
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    if (!super.equals(o)) return false;
    ApplicationStatusFluent that = (ApplicationStatusFluent) o;
    if (!java.util.Objects.equals(components, that.components)) return false;
    if (!java.util.Objects.equals(componentsReady, that.componentsReady)) return false;
    if (!java.util.Objects.equals(conditions, that.conditions)) return false;
    if (!java.util.Objects.equals(observedGeneration, that.observedGeneration)) return false;
    if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
    return true;
  }
  
  public int hashCode() {
    return java.util.Objects.hash(components,  componentsReady,  conditions,  observedGeneration,  additionalProperties,  super.hashCode());
  }
  
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    if (components != null && !components.isEmpty()) { sb.append("components:"); sb.append(components + ","); }
    if (componentsReady != null) { sb.append("componentsReady:"); sb.append(componentsReady + ","); }
    if (conditions != null && !conditions.isEmpty()) { sb.append("conditions:"); sb.append(conditions + ","); }
    if (observedGeneration != null) { sb.append("observedGeneration:"); sb.append(observedGeneration + ","); }
    if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
    sb.append("}");
    return sb.toString();
  }
  public class ComponentsNested extends ObjectStatusFluent> implements Nested{
    ComponentsNested(int index,ObjectStatus item) {
      this.index = index;
      this.builder = new ObjectStatusBuilder(this, item);
    }
    ObjectStatusBuilder builder;
    int index;
    
    public N and() {
      return (N) ApplicationStatusFluent.this.setToComponents(index,builder.build());
    }
    
    public N endComponent() {
      return and();
    }
    
  
  }
  public class ConditionsNested extends ConditionFluent> implements Nested{
    ConditionsNested(int index,Condition item) {
      this.index = index;
      this.builder = new ConditionBuilder(this, item);
    }
    ConditionBuilder builder;
    int index;
    
    public N and() {
      return (N) ApplicationStatusFluent.this.setToConditions(index,builder.build());
    }
    
    public N endCondition() {
      return and();
    }
    
  
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy