
io.kubernetes.client.openapi.models.V1alpha2PodSchedulingContextSpecFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
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 V1alpha2PodSchedulingContextSpecFluent> extends BaseFluent{
public V1alpha2PodSchedulingContextSpecFluent() {
}
public V1alpha2PodSchedulingContextSpecFluent(V1alpha2PodSchedulingContextSpec instance) {
this.copyInstance(instance);
}
private List potentialNodes;
private String selectedNode;
protected void copyInstance(V1alpha2PodSchedulingContextSpec instance) {
instance = (instance != null ? instance : new V1alpha2PodSchedulingContextSpec());
if (instance != null) {
this.withPotentialNodes(instance.getPotentialNodes());
this.withSelectedNode(instance.getSelectedNode());
}
}
public A addToPotentialNodes(int index,String item) {
if (this.potentialNodes == null) {this.potentialNodes = new ArrayList();}
this.potentialNodes.add(index, item);
return (A)this;
}
public A setToPotentialNodes(int index,String item) {
if (this.potentialNodes == null) {this.potentialNodes = new ArrayList();}
this.potentialNodes.set(index, item); return (A)this;
}
public A addToPotentialNodes(java.lang.String... items) {
if (this.potentialNodes == null) {this.potentialNodes = new ArrayList();}
for (String item : items) {this.potentialNodes.add(item);} return (A)this;
}
public A addAllToPotentialNodes(Collection items) {
if (this.potentialNodes == null) {this.potentialNodes = new ArrayList();}
for (String item : items) {this.potentialNodes.add(item);} return (A)this;
}
public A removeFromPotentialNodes(java.lang.String... items) {
if (this.potentialNodes == null) return (A)this;
for (String item : items) { this.potentialNodes.remove(item);} return (A)this;
}
public A removeAllFromPotentialNodes(Collection items) {
if (this.potentialNodes == null) return (A)this;
for (String item : items) { this.potentialNodes.remove(item);} return (A)this;
}
public List getPotentialNodes() {
return this.potentialNodes;
}
public String getPotentialNode(int index) {
return this.potentialNodes.get(index);
}
public String getFirstPotentialNode() {
return this.potentialNodes.get(0);
}
public String getLastPotentialNode() {
return this.potentialNodes.get(potentialNodes.size() - 1);
}
public String getMatchingPotentialNode(Predicate predicate) {
for (String item : potentialNodes) {
if (predicate.test(item)) {
return item;
}
}
return null;
}
public boolean hasMatchingPotentialNode(Predicate predicate) {
for (String item : potentialNodes) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withPotentialNodes(List potentialNodes) {
if (potentialNodes != null) {
this.potentialNodes = new ArrayList();
for (String item : potentialNodes) {
this.addToPotentialNodes(item);
}
} else {
this.potentialNodes = null;
}
return (A) this;
}
public A withPotentialNodes(java.lang.String... potentialNodes) {
if (this.potentialNodes != null) {
this.potentialNodes.clear();
_visitables.remove("potentialNodes");
}
if (potentialNodes != null) {
for (String item : potentialNodes) {
this.addToPotentialNodes(item);
}
}
return (A) this;
}
public boolean hasPotentialNodes() {
return this.potentialNodes != null && !this.potentialNodes.isEmpty();
}
public String getSelectedNode() {
return this.selectedNode;
}
public A withSelectedNode(String selectedNode) {
this.selectedNode = selectedNode;
return (A) this;
}
public boolean hasSelectedNode() {
return this.selectedNode != null;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1alpha2PodSchedulingContextSpecFluent that = (V1alpha2PodSchedulingContextSpecFluent) o;
if (!java.util.Objects.equals(potentialNodes, that.potentialNodes)) return false;
if (!java.util.Objects.equals(selectedNode, that.selectedNode)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(potentialNodes, selectedNode, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (potentialNodes != null && !potentialNodes.isEmpty()) { sb.append("potentialNodes:"); sb.append(potentialNodes + ","); }
if (selectedNode != null) { sb.append("selectedNode:"); sb.append(selectedNode); }
sb.append("}");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy