
io.kubernetes.client.openapi.models.V1StatefulSetStatusFluent Maven / Gradle / Ivy
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 io.kubernetes.client.fluent.BaseFluent;
import java.lang.Long;
import java.util.Iterator;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class V1StatefulSetStatusFluent> extends BaseFluent{
public V1StatefulSetStatusFluent() {
}
public V1StatefulSetStatusFluent(V1StatefulSetStatus instance) {
this.copyInstance(instance);
}
private Integer availableReplicas;
private Integer collisionCount;
private ArrayList conditions;
private Integer currentReplicas;
private String currentRevision;
private Long observedGeneration;
private Integer readyReplicas;
private Integer replicas;
private String updateRevision;
private Integer updatedReplicas;
protected void copyInstance(V1StatefulSetStatus instance) {
instance = (instance != null ? instance : new V1StatefulSetStatus());
if (instance != null) {
this.withAvailableReplicas(instance.getAvailableReplicas());
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 getAvailableReplicas() {
return this.availableReplicas;
}
public A withAvailableReplicas(Integer availableReplicas) {
this.availableReplicas = availableReplicas;
return (A) this;
}
public boolean hasAvailableReplicas() {
return this.availableReplicas != null;
}
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 addToConditions(int index,V1StatefulSetCondition item) {
if (this.conditions == null) {this.conditions = new ArrayList();}
V1StatefulSetConditionBuilder builder = new V1StatefulSetConditionBuilder(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,V1StatefulSetCondition item) {
if (this.conditions == null) {this.conditions = new ArrayList();}
V1StatefulSetConditionBuilder builder = new V1StatefulSetConditionBuilder(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.kubernetes.client.openapi.models.V1StatefulSetCondition... items) {
if (this.conditions == null) {this.conditions = new ArrayList();}
for (V1StatefulSetCondition item : items) {V1StatefulSetConditionBuilder builder = new V1StatefulSetConditionBuilder(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 (V1StatefulSetCondition item : items) {V1StatefulSetConditionBuilder builder = new V1StatefulSetConditionBuilder(item);_visitables.get("conditions").add(builder);this.conditions.add(builder);} return (A)this;
}
public A removeFromConditions(io.kubernetes.client.openapi.models.V1StatefulSetCondition... items) {
if (this.conditions == null) return (A)this;
for (V1StatefulSetCondition item : items) {V1StatefulSetConditionBuilder builder = new V1StatefulSetConditionBuilder(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 (V1StatefulSetCondition item : items) {V1StatefulSetConditionBuilder builder = new V1StatefulSetConditionBuilder(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()) {
V1StatefulSetConditionBuilder 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 V1StatefulSetCondition buildCondition(int index) {
return this.conditions.get(index).build();
}
public V1StatefulSetCondition buildFirstCondition() {
return this.conditions.get(0).build();
}
public V1StatefulSetCondition buildLastCondition() {
return this.conditions.get(conditions.size() - 1).build();
}
public V1StatefulSetCondition buildMatchingCondition(Predicate predicate) {
for (V1StatefulSetConditionBuilder item : conditions) {
if (predicate.test(item)) {
return item.build();
}
}
return null;
}
public boolean hasMatchingCondition(Predicate predicate) {
for (V1StatefulSetConditionBuilder 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 (V1StatefulSetCondition item : conditions) {
this.addToConditions(item);
}
} else {
this.conditions = null;
}
return (A) this;
}
public A withConditions(io.kubernetes.client.openapi.models.V1StatefulSetCondition... conditions) {
if (this.conditions != null) {
this.conditions.clear();
_visitables.remove("conditions");
}
if (conditions != null) {
for (V1StatefulSetCondition 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(V1StatefulSetCondition item) {
return new ConditionsNested(-1, item);
}
public ConditionsNested setNewConditionLike(int index,V1StatefulSetCondition 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 extends V1StatefulSetConditionFluent> implements Nested{
ConditionsNested(int index,V1StatefulSetCondition item) {
this.index = index;
this.builder = new V1StatefulSetConditionBuilder(this, item);
}
V1StatefulSetConditionBuilder builder;
int index;
public N and() {
return (N) V1StatefulSetStatusFluent.this.setToConditions(index,builder.build());
}
public N endCondition() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy