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

io.kubernetes.client.models.V1beta2StatefulSetStatusFluentImpl Maven / Gradle / Ivy

package io.kubernetes.client.models;

import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Nested;
import java.util.ArrayList;
import java.lang.String;
import io.kubernetes.client.fluent.Predicate;
import java.lang.Integer;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Long;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.Boolean;

public class V1beta2StatefulSetStatusFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1beta2StatefulSetStatusFluent{

    private Integer collisionCount;
    private List conditions;
    private Integer currentReplicas;
    private String currentRevision;
    private Long observedGeneration;
    private Integer readyReplicas;
    private Integer replicas;
    private String updateRevision;
    private Integer updatedReplicas;

    public V1beta2StatefulSetStatusFluentImpl(){
    }
    public V1beta2StatefulSetStatusFluentImpl(V1beta2StatefulSetStatus instance){
            this.withCollisionCount(instance.getCollisionCount());

            this.withConditions(instance.getConditions());

            this.withCurrentReplicas(instance.getCurrentReplicas());

            this.withCurrentRevision(instance.getCurrentRevision());

            this.withObservedGeneration(instance.getObservedGeneration());

            this.withReadyReplicas(instance.getReadyReplicas());

            this.withReplicas(instance.getReplicas());

            this.withUpdateRevision(instance.getUpdateRevision());

            this.withUpdatedReplicas(instance.getUpdatedReplicas());

    }

    public Integer getCollisionCount(){
            return this.collisionCount;
    }

    public A withCollisionCount(Integer collisionCount){
            this.collisionCount=collisionCount; return (A) this;
    }

    public Boolean hasCollisionCount(){
            return this.collisionCount != null;
    }

    public A withNewCollisionCount(int arg1){
            return (A)withCollisionCount(new Integer(arg1));
    }

    public A withNewCollisionCount(String arg1){
            return (A)withCollisionCount(new Integer(arg1));
    }

    public A addToConditions(int index,V1beta2StatefulSetCondition item){
            if (this.conditions == null) {this.conditions = new ArrayList();}
            V1beta2StatefulSetConditionBuilder builder = new V1beta2StatefulSetConditionBuilder(item);_visitables.add(index >= 0 ? index : _visitables.size(), builder);this.conditions.add(index >= 0 ? index : conditions.size(), builder); return (A)this;
    }

    public A setToConditions(int index,V1beta2StatefulSetCondition item){
            if (this.conditions == null) {this.conditions = new ArrayList();}
            V1beta2StatefulSetConditionBuilder builder = new V1beta2StatefulSetConditionBuilder(item);
            if (index < 0 || index >= _visitables.size()) { _visitables.add(builder); } else { _visitables.set(index, builder);}
            if (index < 0 || index >= conditions.size()) { conditions.add(builder); } else { conditions.set(index, builder);}
             return (A)this;
    }

    public A addToConditions(V1beta2StatefulSetCondition... items){
            if (this.conditions == null) {this.conditions = new ArrayList();}
            for (V1beta2StatefulSetCondition item : items) {V1beta2StatefulSetConditionBuilder builder = new V1beta2StatefulSetConditionBuilder(item);_visitables.add(builder);this.conditions.add(builder);} return (A)this;
    }

    public A addAllToConditions(Collection items){
            if (this.conditions == null) {this.conditions = new ArrayList();}
            for (V1beta2StatefulSetCondition item : items) {V1beta2StatefulSetConditionBuilder builder = new V1beta2StatefulSetConditionBuilder(item);_visitables.add(builder);this.conditions.add(builder);} return (A)this;
    }

    public A removeFromConditions(V1beta2StatefulSetCondition... items){
            for (V1beta2StatefulSetCondition item : items) {V1beta2StatefulSetConditionBuilder builder = new V1beta2StatefulSetConditionBuilder(item);_visitables.remove(builder);if (this.conditions != null) {this.conditions.remove(builder);}} return (A)this;
    }

    public A removeAllFromConditions(Collection items){
            for (V1beta2StatefulSetCondition item : items) {V1beta2StatefulSetConditionBuilder builder = new V1beta2StatefulSetConditionBuilder(item);_visitables.remove(builder);if (this.conditions != null) {this.conditions.remove(builder);}} return (A)this;
    }

    
/**
 * This method has been deprecated, please use method buildConditions instead.
 */
@Deprecated public List getConditions(){
            return build(conditions);
    }

    public List buildConditions(){
            return build(conditions);
    }

    public V1beta2StatefulSetCondition buildCondition(int index){
            return this.conditions.get(index).build();
    }

    public V1beta2StatefulSetCondition buildFirstCondition(){
            return this.conditions.get(0).build();
    }

    public V1beta2StatefulSetCondition buildLastCondition(){
            return this.conditions.get(conditions.size() - 1).build();
    }

    public V1beta2StatefulSetCondition buildMatchingCondition(io.kubernetes.client.fluent.Predicate predicate){
            for (V1beta2StatefulSetConditionBuilder item: conditions) { if(predicate.apply(item)){return item.build();} } return null;
    }

    public A withConditions(List conditions){
            if (this.conditions != null) { _visitables.removeAll(this.conditions);}
            if (conditions != null) {this.conditions = new ArrayList(); for (V1beta2StatefulSetCondition item : conditions){this.addToConditions(item);}} else { this.conditions = null;} return (A) this;
    }

    public A withConditions(V1beta2StatefulSetCondition... conditions){
            this.conditions.clear(); if (conditions != null) {for (V1beta2StatefulSetCondition item :conditions){ this.addToConditions(item);}} return (A) this;
    }

    public Boolean hasConditions(){
            return conditions != null && !conditions.isEmpty();
    }

    public V1beta2StatefulSetStatusFluent.ConditionsNested addNewCondition(){
            return new ConditionsNestedImpl();
    }

    public V1beta2StatefulSetStatusFluent.ConditionsNested addNewConditionLike(V1beta2StatefulSetCondition item){
            return new ConditionsNestedImpl(-1, item);
    }

    public V1beta2StatefulSetStatusFluent.ConditionsNested setNewConditionLike(int index,V1beta2StatefulSetCondition item){
            return new ConditionsNestedImpl(index, item);
    }

    public V1beta2StatefulSetStatusFluent.ConditionsNested editCondition(int index){
            if (conditions.size() <= index) throw new RuntimeException("Can't edit conditions. Index exceeds size.");
            return setNewConditionLike(index, buildCondition(index));
    }

    public V1beta2StatefulSetStatusFluent.ConditionsNested editFirstCondition(){
            if (conditions.size() == 0) throw new RuntimeException("Can't edit first conditions. The list is empty.");
            return setNewConditionLike(0, buildCondition(0));
    }

    public V1beta2StatefulSetStatusFluent.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 V1beta2StatefulSetStatusFluent.ConditionsNested editMatchingCondition(io.kubernetes.client.fluent.Predicate predicate){
            int index = -1;
            for (int i=0;i extends V1beta2StatefulSetConditionFluentImpl> implements V1beta2StatefulSetStatusFluent.ConditionsNested,io.kubernetes.client.fluent.Nested{

            private final V1beta2StatefulSetConditionBuilder builder;
        private final int index;
    
            ConditionsNestedImpl(int index,V1beta2StatefulSetCondition item){
                    this.index = index;
                    this.builder = new V1beta2StatefulSetConditionBuilder(this, item);
            }
            ConditionsNestedImpl(){
                    this.index = -1;
                    this.builder = new V1beta2StatefulSetConditionBuilder(this);
            }
    
    public N and(){
            return (N) V1beta2StatefulSetStatusFluentImpl.this.setToConditions(index, builder.build());
    }
    public N endCondition(){
            return and();
    }

}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy