io.kubernetes.client.openapi.models.V1PodFailurePolicyOnExitCodesRequirementFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.Integer;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.BaseFluent;
import java.util.ArrayList;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.String;
import java.util.function.Predicate;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class V1PodFailurePolicyOnExitCodesRequirementFluent> extends BaseFluent{
public V1PodFailurePolicyOnExitCodesRequirementFluent() {
}
public V1PodFailurePolicyOnExitCodesRequirementFluent(V1PodFailurePolicyOnExitCodesRequirement instance) {
this.copyInstance(instance);
}
private String containerName;
private String operator;
private List values;
protected void copyInstance(V1PodFailurePolicyOnExitCodesRequirement instance) {
instance = (instance != null ? instance : new V1PodFailurePolicyOnExitCodesRequirement());
if (instance != null) {
this.withContainerName(instance.getContainerName());
this.withOperator(instance.getOperator());
this.withValues(instance.getValues());
}
}
public String getContainerName() {
return this.containerName;
}
public A withContainerName(String containerName) {
this.containerName = containerName;
return (A) this;
}
public boolean hasContainerName() {
return this.containerName != null;
}
public String getOperator() {
return this.operator;
}
public A withOperator(String operator) {
this.operator = operator;
return (A) this;
}
public boolean hasOperator() {
return this.operator != null;
}
public A addToValues(int index,Integer item) {
if (this.values == null) {this.values = new ArrayList();}
this.values.add(index, item);
return (A)this;
}
public A setToValues(int index,Integer item) {
if (this.values == null) {this.values = new ArrayList();}
this.values.set(index, item); return (A)this;
}
public A addToValues(java.lang.Integer... items) {
if (this.values == null) {this.values = new ArrayList();}
for (Integer item : items) {this.values.add(item);} return (A)this;
}
public A addAllToValues(Collection items) {
if (this.values == null) {this.values = new ArrayList();}
for (Integer item : items) {this.values.add(item);} return (A)this;
}
public A removeFromValues(java.lang.Integer... items) {
if (this.values == null) return (A)this;
for (Integer item : items) { this.values.remove(item);} return (A)this;
}
public A removeAllFromValues(Collection items) {
if (this.values == null) return (A)this;
for (Integer item : items) { this.values.remove(item);} return (A)this;
}
public List getValues() {
return this.values;
}
public Integer getValue(int index) {
return this.values.get(index);
}
public Integer getFirstValue() {
return this.values.get(0);
}
public Integer getLastValue() {
return this.values.get(values.size() - 1);
}
public Integer getMatchingValue(Predicate predicate) {
for (Integer item : values) {
if (predicate.test(item)) {
return item;
}
}
return null;
}
public boolean hasMatchingValue(Predicate predicate) {
for (Integer item : values) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withValues(List values) {
if (values != null) {
this.values = new ArrayList();
for (Integer item : values) {
this.addToValues(item);
}
} else {
this.values = null;
}
return (A) this;
}
public A withValues(java.lang.Integer... values) {
if (this.values != null) {
this.values.clear();
_visitables.remove("values");
}
if (values != null) {
for (Integer item : values) {
this.addToValues(item);
}
}
return (A) this;
}
public boolean hasValues() {
return this.values != null && !this.values.isEmpty();
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1PodFailurePolicyOnExitCodesRequirementFluent that = (V1PodFailurePolicyOnExitCodesRequirementFluent) o;
if (!java.util.Objects.equals(containerName, that.containerName)) return false;
if (!java.util.Objects.equals(operator, that.operator)) return false;
if (!java.util.Objects.equals(values, that.values)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(containerName, operator, values, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (containerName != null) { sb.append("containerName:"); sb.append(containerName + ","); }
if (operator != null) { sb.append("operator:"); sb.append(operator + ","); }
if (values != null && !values.isEmpty()) { sb.append("values:"); sb.append(values); }
sb.append("}");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy