
io.fabric8.kubernetes.api.model.node.v1alpha1.SchedulingFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.node.v1alpha1;
import java.util.ArrayList;
import java.lang.String;
import java.util.LinkedHashMap;
import java.util.function.Predicate;
import java.lang.Integer;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.model.Toleration;
import java.lang.Long;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.Boolean;
import java.util.Map;
/**
* Generated
*/
public class SchedulingFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.node.v1alpha1.SchedulingFluent{
public SchedulingFluentImpl() {
}
public SchedulingFluentImpl(io.fabric8.kubernetes.api.model.node.v1alpha1.Scheduling instance) {
this.withNodeSelector(instance.getNodeSelector());
this.withTolerations(instance.getTolerations());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
private java.util.Map nodeSelector;
private java.util.List tolerations = new java.util.ArrayList();
private java.util.Map additionalProperties;
public A addToNodeSelector(java.lang.String key,java.lang.String value) {
if(this.nodeSelector == null && key != null && value != null) { this.nodeSelector = new java.util.LinkedHashMap(); }
if(key != null && value != null) {this.nodeSelector.put(key, value);} return (A)this;
}
public A addToNodeSelector(java.util.Map map) {
if(this.nodeSelector == null && map != null) { this.nodeSelector = new java.util.LinkedHashMap(); }
if(map != null) { this.nodeSelector.putAll(map);} return (A)this;
}
public A removeFromNodeSelector(java.lang.String key) {
if(this.nodeSelector == null) { return (A) this; }
if(key != null && this.nodeSelector != null) {this.nodeSelector.remove(key);} return (A)this;
}
public A removeFromNodeSelector(java.util.Map map) {
if(this.nodeSelector == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.nodeSelector != null){this.nodeSelector.remove(key);}}} return (A)this;
}
public java.util.Map getNodeSelector() {
return this.nodeSelector;
}
public A withNodeSelector(java.util.Map nodeSelector) {
if (nodeSelector == null) { this.nodeSelector = null;} else {this.nodeSelector = new java.util.LinkedHashMap(nodeSelector);} return (A) this;
}
public java.lang.Boolean hasNodeSelector() {
return this.nodeSelector != null;
}
public A addToTolerations(java.lang.Integer index,io.fabric8.kubernetes.api.model.Toleration item) {
if (this.tolerations == null) {this.tolerations = new java.util.ArrayList();}
this.tolerations.add(index, item);
return (A)this;
}
public A setToTolerations(java.lang.Integer index,io.fabric8.kubernetes.api.model.Toleration item) {
if (this.tolerations == null) {this.tolerations = new java.util.ArrayList();}
this.tolerations.set(index, item); return (A)this;
}
public A addToTolerations(io.fabric8.kubernetes.api.model.Toleration... items) {
if (this.tolerations == null) {this.tolerations = new java.util.ArrayList();}
for (io.fabric8.kubernetes.api.model.Toleration item : items) {this.tolerations.add(item);} return (A)this;
}
public A addAllToTolerations(java.util.Collection items) {
if (this.tolerations == null) {this.tolerations = new java.util.ArrayList();}
for (io.fabric8.kubernetes.api.model.Toleration item : items) {this.tolerations.add(item);} return (A)this;
}
public A removeFromTolerations(io.fabric8.kubernetes.api.model.Toleration... items) {
for (io.fabric8.kubernetes.api.model.Toleration item : items) {if (this.tolerations!= null){ this.tolerations.remove(item);}} return (A)this;
}
public A removeAllFromTolerations(java.util.Collection items) {
for (io.fabric8.kubernetes.api.model.Toleration item : items) {if (this.tolerations!= null){ this.tolerations.remove(item);}} return (A)this;
}
public java.util.List getTolerations() {
return this.tolerations;
}
public io.fabric8.kubernetes.api.model.Toleration getToleration(java.lang.Integer index) {
return this.tolerations.get(index);
}
public io.fabric8.kubernetes.api.model.Toleration getFirstToleration() {
return this.tolerations.get(0);
}
public io.fabric8.kubernetes.api.model.Toleration getLastToleration() {
return this.tolerations.get(tolerations.size() - 1);
}
public io.fabric8.kubernetes.api.model.Toleration getMatchingToleration(java.util.function.Predicate predicate) {
for (io.fabric8.kubernetes.api.model.Toleration item: tolerations) { if(predicate.test(item)){ return item;} } return null;
}
public java.lang.Boolean hasMatchingToleration(java.util.function.Predicate predicate) {
for (io.fabric8.kubernetes.api.model.Toleration item: tolerations) { if(predicate.test(item)){ return true;} } return false;
}
public A withTolerations(java.util.List tolerations) {
if (tolerations != null) {this.tolerations = new java.util.ArrayList(); for (io.fabric8.kubernetes.api.model.Toleration item : tolerations){this.addToTolerations(item);}} else { this.tolerations = null;} return (A) this;
}
public A withTolerations(io.fabric8.kubernetes.api.model.Toleration... tolerations) {
if (this.tolerations != null) {this.tolerations.clear();}
if (tolerations != null) {for (io.fabric8.kubernetes.api.model.Toleration item :tolerations){ this.addToTolerations(item);}} return (A) this;
}
public java.lang.Boolean hasTolerations() {
return tolerations != null && !tolerations.isEmpty();
}
public A addNewToleration(java.lang.String effect,java.lang.String key,java.lang.String operator,java.lang.Long tolerationSeconds,java.lang.String value) {
return (A)addToTolerations(new Toleration(effect, key, operator, tolerationSeconds, value));
}
public A addToAdditionalProperties(java.lang.String key,java.lang.Object value) {
if(this.additionalProperties == null && key != null && value != null) { this.additionalProperties = new java.util.LinkedHashMap(); }
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (A)this;
}
public A addToAdditionalProperties(java.util.Map map) {
if(this.additionalProperties == null && map != null) { this.additionalProperties = new java.util.LinkedHashMap(); }
if(map != null) { this.additionalProperties.putAll(map);} return (A)this;
}
public A removeFromAdditionalProperties(java.lang.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(java.util.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 java.util.Map getAdditionalProperties() {
return this.additionalProperties;
}
public A withAdditionalProperties(java.util.Map additionalProperties) {
if (additionalProperties == null) { this.additionalProperties = null;} else {this.additionalProperties = new java.util.LinkedHashMap(additionalProperties);} return (A) this;
}
public java.lang.Boolean hasAdditionalProperties() {
return this.additionalProperties != null;
}
public boolean equals(java.lang.Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SchedulingFluentImpl that = (SchedulingFluentImpl) o;
if (nodeSelector != null ? !nodeSelector.equals(that.nodeSelector) :that.nodeSelector != null) return false;
if (tolerations != null ? !tolerations.equals(that.tolerations) :that.tolerations != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(nodeSelector, tolerations, additionalProperties, super.hashCode());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy