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

io.kubernetes.client.openapi.models.V2HPAScalingRulesFluentImpl 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 V2HPAScalingRulesFluentImpl> extends BaseFluent implements V2HPAScalingRulesFluent{
  public V2HPAScalingRulesFluentImpl() {
  }
  public V2HPAScalingRulesFluentImpl(V2HPAScalingRules instance) {
    this.withPolicies(instance.getPolicies());

    this.withSelectPolicy(instance.getSelectPolicy());

    this.withStabilizationWindowSeconds(instance.getStabilizationWindowSeconds());

  }
  private ArrayList policies;
  private String selectPolicy;
  private Integer stabilizationWindowSeconds;
  public A addToPolicies(Integer index,V2HPAScalingPolicy item) {
    if (this.policies == null) {this.policies = new ArrayList();}
    V2HPAScalingPolicyBuilder builder = new V2HPAScalingPolicyBuilder(item);_visitables.get("policies").add(index >= 0 ? index : _visitables.get("policies").size(), builder);this.policies.add(index >= 0 ? index : policies.size(), builder); return (A)this;
  }
  public A setToPolicies(Integer index,V2HPAScalingPolicy item) {
    if (this.policies == null) {this.policies = new ArrayList();}
    V2HPAScalingPolicyBuilder builder = new V2HPAScalingPolicyBuilder(item);
    if (index < 0 || index >= _visitables.get("policies").size()) { _visitables.get("policies").add(builder); } else { _visitables.get("policies").set(index, builder);}
    if (index < 0 || index >= policies.size()) { policies.add(builder); } else { policies.set(index, builder);}
     return (A)this;
  }
  public A addToPolicies(io.kubernetes.client.openapi.models.V2HPAScalingPolicy... items) {
    if (this.policies == null) {this.policies = new ArrayList();}
    for (V2HPAScalingPolicy item : items) {V2HPAScalingPolicyBuilder builder = new V2HPAScalingPolicyBuilder(item);_visitables.get("policies").add(builder);this.policies.add(builder);} return (A)this;
  }
  public A addAllToPolicies(Collection items) {
    if (this.policies == null) {this.policies = new ArrayList();}
    for (V2HPAScalingPolicy item : items) {V2HPAScalingPolicyBuilder builder = new V2HPAScalingPolicyBuilder(item);_visitables.get("policies").add(builder);this.policies.add(builder);} return (A)this;
  }
  public A removeFromPolicies(io.kubernetes.client.openapi.models.V2HPAScalingPolicy... items) {
    for (V2HPAScalingPolicy item : items) {V2HPAScalingPolicyBuilder builder = new V2HPAScalingPolicyBuilder(item);_visitables.get("policies").remove(builder);if (this.policies != null) {this.policies.remove(builder);}} return (A)this;
  }
  public A removeAllFromPolicies(Collection items) {
    for (V2HPAScalingPolicy item : items) {V2HPAScalingPolicyBuilder builder = new V2HPAScalingPolicyBuilder(item);_visitables.get("policies").remove(builder);if (this.policies != null) {this.policies.remove(builder);}} return (A)this;
  }
  public A removeMatchingFromPolicies(Predicate predicate) {
    if (policies == null) return (A) this;
    final Iterator each = policies.iterator();
    final List visitables = _visitables.get("policies");
    while (each.hasNext()) {
      V2HPAScalingPolicyBuilder builder = each.next();
      if (predicate.test(builder)) {
        visitables.remove(builder);
        each.remove();
      }
    }
    return (A)this;
  }
  
  /**
   * This method has been deprecated, please use method buildPolicies instead.
   * @return The buildable object.
   */
  @Deprecated
  public List getPolicies() {
    return policies != null ? build(policies) : null;
  }
  public List buildPolicies() {
    return policies != null ? build(policies) : null;
  }
  public V2HPAScalingPolicy buildPolicy(Integer index) {
    return this.policies.get(index).build();
  }
  public V2HPAScalingPolicy buildFirstPolicy() {
    return this.policies.get(0).build();
  }
  public V2HPAScalingPolicy buildLastPolicy() {
    return this.policies.get(policies.size() - 1).build();
  }
  public V2HPAScalingPolicy buildMatchingPolicy(Predicate predicate) {
    for (V2HPAScalingPolicyBuilder item: policies) { if(predicate.test(item)){ return item.build();} } return null;
  }
  public Boolean hasMatchingPolicy(Predicate predicate) {
    for (V2HPAScalingPolicyBuilder item: policies) { if(predicate.test(item)){ return true;} } return false;
  }
  public A withPolicies(List policies) {
    if (this.policies != null) { _visitables.get("policies").removeAll(this.policies);}
    if (policies != null) {this.policies = new ArrayList(); for (V2HPAScalingPolicy item : policies){this.addToPolicies(item);}} else { this.policies = null;} return (A) this;
  }
  public A withPolicies(io.kubernetes.client.openapi.models.V2HPAScalingPolicy... policies) {
    if (this.policies != null) {this.policies.clear();}
    if (policies != null) {for (V2HPAScalingPolicy item :policies){ this.addToPolicies(item);}} return (A) this;
  }
  public Boolean hasPolicies() {
    return policies != null && !policies.isEmpty();
  }
  public V2HPAScalingRulesFluent.PoliciesNested addNewPolicy() {
    return new V2HPAScalingRulesFluentImpl.PoliciesNestedImpl();
  }
  public V2HPAScalingRulesFluent.PoliciesNested addNewPolicyLike(V2HPAScalingPolicy item) {
    return new V2HPAScalingRulesFluentImpl.PoliciesNestedImpl(-1, item);
  }
  public V2HPAScalingRulesFluent.PoliciesNested setNewPolicyLike(Integer index,V2HPAScalingPolicy item) {
    return new V2HPAScalingRulesFluentImpl.PoliciesNestedImpl(index, item);
  }
  public V2HPAScalingRulesFluent.PoliciesNested editPolicy(Integer index) {
    if (policies.size() <= index) throw new RuntimeException("Can't edit policies. Index exceeds size.");
    return setNewPolicyLike(index, buildPolicy(index));
  }
  public V2HPAScalingRulesFluent.PoliciesNested editFirstPolicy() {
    if (policies.size() == 0) throw new RuntimeException("Can't edit first policies. The list is empty.");
    return setNewPolicyLike(0, buildPolicy(0));
  }
  public V2HPAScalingRulesFluent.PoliciesNested editLastPolicy() {
    int index = policies.size() - 1;
    if (index < 0) throw new RuntimeException("Can't edit last policies. The list is empty.");
    return setNewPolicyLike(index, buildPolicy(index));
  }
  public V2HPAScalingRulesFluent.PoliciesNested editMatchingPolicy(Predicate predicate) {
    int index = -1;
    for (int i=0;i extends V2HPAScalingPolicyFluentImpl> implements V2HPAScalingRulesFluent.PoliciesNested,Nested{
    PoliciesNestedImpl(Integer index,V2HPAScalingPolicy item) {
      this.index = index;
      this.builder = new V2HPAScalingPolicyBuilder(this, item);
    }
    PoliciesNestedImpl() {
      this.index = -1;
      this.builder = new V2HPAScalingPolicyBuilder(this);
    }
    V2HPAScalingPolicyBuilder builder;
    Integer index;
    public N and() {
      return (N) V2HPAScalingRulesFluentImpl.this.setToPolicies(index,builder.build());
    }
    public N endPolicy() {
      return and();
    }
    
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy