io.kubernetes.client.openapi.models.V1PodAffinityTermFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
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 java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.Boolean;
/**
* Generated
*/
@SuppressWarnings(value = "unchecked")
public class V1PodAffinityTermFluentImpl> extends BaseFluent implements V1PodAffinityTermFluent{
public V1PodAffinityTermFluentImpl() {
}
public V1PodAffinityTermFluentImpl(V1PodAffinityTerm instance) {
this.withLabelSelector(instance.getLabelSelector());
this.withNamespaceSelector(instance.getNamespaceSelector());
this.withNamespaces(instance.getNamespaces());
this.withTopologyKey(instance.getTopologyKey());
}
private V1LabelSelectorBuilder labelSelector;
private V1LabelSelectorBuilder namespaceSelector;
private List namespaces;
private String topologyKey;
/**
* This method has been deprecated, please use method buildLabelSelector instead.
* @return The buildable object.
*/
@Deprecated
public V1LabelSelector getLabelSelector() {
return this.labelSelector!=null ?this.labelSelector.build():null;
}
public V1LabelSelector buildLabelSelector() {
return this.labelSelector!=null ?this.labelSelector.build():null;
}
public A withLabelSelector(V1LabelSelector labelSelector) {
_visitables.get("labelSelector").remove(this.labelSelector);
if (labelSelector!=null){ this.labelSelector= new V1LabelSelectorBuilder(labelSelector); _visitables.get("labelSelector").add(this.labelSelector);} else { this.labelSelector = null; _visitables.get("labelSelector").remove(this.labelSelector); } return (A) this;
}
public Boolean hasLabelSelector() {
return this.labelSelector != null;
}
public V1PodAffinityTermFluent.LabelSelectorNested withNewLabelSelector() {
return new V1PodAffinityTermFluentImpl.LabelSelectorNestedImpl();
}
public V1PodAffinityTermFluent.LabelSelectorNested withNewLabelSelectorLike(V1LabelSelector item) {
return new V1PodAffinityTermFluentImpl.LabelSelectorNestedImpl(item);
}
public V1PodAffinityTermFluent.LabelSelectorNested editLabelSelector() {
return withNewLabelSelectorLike(getLabelSelector());
}
public V1PodAffinityTermFluent.LabelSelectorNested editOrNewLabelSelector() {
return withNewLabelSelectorLike(getLabelSelector() != null ? getLabelSelector(): new V1LabelSelectorBuilder().build());
}
public V1PodAffinityTermFluent.LabelSelectorNested editOrNewLabelSelectorLike(V1LabelSelector item) {
return withNewLabelSelectorLike(getLabelSelector() != null ? getLabelSelector(): item);
}
/**
* This method has been deprecated, please use method buildNamespaceSelector instead.
* @return The buildable object.
*/
@Deprecated
public V1LabelSelector getNamespaceSelector() {
return this.namespaceSelector!=null ?this.namespaceSelector.build():null;
}
public V1LabelSelector buildNamespaceSelector() {
return this.namespaceSelector!=null ?this.namespaceSelector.build():null;
}
public A withNamespaceSelector(V1LabelSelector namespaceSelector) {
_visitables.get("namespaceSelector").remove(this.namespaceSelector);
if (namespaceSelector!=null){ this.namespaceSelector= new V1LabelSelectorBuilder(namespaceSelector); _visitables.get("namespaceSelector").add(this.namespaceSelector);} else { this.namespaceSelector = null; _visitables.get("namespaceSelector").remove(this.namespaceSelector); } return (A) this;
}
public Boolean hasNamespaceSelector() {
return this.namespaceSelector != null;
}
public V1PodAffinityTermFluent.NamespaceSelectorNested withNewNamespaceSelector() {
return new V1PodAffinityTermFluentImpl.NamespaceSelectorNestedImpl();
}
public V1PodAffinityTermFluent.NamespaceSelectorNested withNewNamespaceSelectorLike(V1LabelSelector item) {
return new V1PodAffinityTermFluentImpl.NamespaceSelectorNestedImpl(item);
}
public V1PodAffinityTermFluent.NamespaceSelectorNested editNamespaceSelector() {
return withNewNamespaceSelectorLike(getNamespaceSelector());
}
public V1PodAffinityTermFluent.NamespaceSelectorNested editOrNewNamespaceSelector() {
return withNewNamespaceSelectorLike(getNamespaceSelector() != null ? getNamespaceSelector(): new V1LabelSelectorBuilder().build());
}
public V1PodAffinityTermFluent.NamespaceSelectorNested editOrNewNamespaceSelectorLike(V1LabelSelector item) {
return withNewNamespaceSelectorLike(getNamespaceSelector() != null ? getNamespaceSelector(): item);
}
public A addToNamespaces(Integer index,String item) {
if (this.namespaces == null) {this.namespaces = new ArrayList();}
this.namespaces.add(index, item);
return (A)this;
}
public A setToNamespaces(Integer index,String item) {
if (this.namespaces == null) {this.namespaces = new ArrayList();}
this.namespaces.set(index, item); return (A)this;
}
public A addToNamespaces(java.lang.String... items) {
if (this.namespaces == null) {this.namespaces = new ArrayList();}
for (String item : items) {this.namespaces.add(item);} return (A)this;
}
public A addAllToNamespaces(Collection items) {
if (this.namespaces == null) {this.namespaces = new ArrayList();}
for (String item : items) {this.namespaces.add(item);} return (A)this;
}
public A removeFromNamespaces(java.lang.String... items) {
for (String item : items) {if (this.namespaces!= null){ this.namespaces.remove(item);}} return (A)this;
}
public A removeAllFromNamespaces(Collection items) {
for (String item : items) {if (this.namespaces!= null){ this.namespaces.remove(item);}} return (A)this;
}
public List getNamespaces() {
return this.namespaces;
}
public String getNamespace(Integer index) {
return this.namespaces.get(index);
}
public String getFirstNamespace() {
return this.namespaces.get(0);
}
public String getLastNamespace() {
return this.namespaces.get(namespaces.size() - 1);
}
public String getMatchingNamespace(Predicate predicate) {
for (String item: namespaces) { if(predicate.test(item)){ return item;} } return null;
}
public Boolean hasMatchingNamespace(Predicate predicate) {
for (String item: namespaces) { if(predicate.test(item)){ return true;} } return false;
}
public A withNamespaces(List namespaces) {
if (namespaces != null) {this.namespaces = new ArrayList(); for (String item : namespaces){this.addToNamespaces(item);}} else { this.namespaces = null;} return (A) this;
}
public A withNamespaces(java.lang.String... namespaces) {
if (this.namespaces != null) {this.namespaces.clear();}
if (namespaces != null) {for (String item :namespaces){ this.addToNamespaces(item);}} return (A) this;
}
public Boolean hasNamespaces() {
return namespaces != null && !namespaces.isEmpty();
}
public String getTopologyKey() {
return this.topologyKey;
}
public A withTopologyKey(String topologyKey) {
this.topologyKey=topologyKey; return (A) this;
}
public Boolean hasTopologyKey() {
return this.topologyKey != null;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
V1PodAffinityTermFluentImpl that = (V1PodAffinityTermFluentImpl) o;
if (labelSelector != null ? !labelSelector.equals(that.labelSelector) :that.labelSelector != null) return false;
if (namespaceSelector != null ? !namespaceSelector.equals(that.namespaceSelector) :that.namespaceSelector != null) return false;
if (namespaces != null ? !namespaces.equals(that.namespaces) :that.namespaces != null) return false;
if (topologyKey != null ? !topologyKey.equals(that.topologyKey) :that.topologyKey != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(labelSelector, namespaceSelector, namespaces, topologyKey, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (labelSelector != null) { sb.append("labelSelector:"); sb.append(labelSelector + ","); }
if (namespaceSelector != null) { sb.append("namespaceSelector:"); sb.append(namespaceSelector + ","); }
if (namespaces != null && !namespaces.isEmpty()) { sb.append("namespaces:"); sb.append(namespaces + ","); }
if (topologyKey != null) { sb.append("topologyKey:"); sb.append(topologyKey); }
sb.append("}");
return sb.toString();
}
class LabelSelectorNestedImpl extends V1LabelSelectorFluentImpl> implements V1PodAffinityTermFluent.LabelSelectorNested,Nested{
LabelSelectorNestedImpl(V1LabelSelector item) {
this.builder = new V1LabelSelectorBuilder(this, item);
}
LabelSelectorNestedImpl() {
this.builder = new V1LabelSelectorBuilder(this);
}
V1LabelSelectorBuilder builder;
public N and() {
return (N) V1PodAffinityTermFluentImpl.this.withLabelSelector(builder.build());
}
public N endLabelSelector() {
return and();
}
}
class NamespaceSelectorNestedImpl extends V1LabelSelectorFluentImpl> implements V1PodAffinityTermFluent.NamespaceSelectorNested,Nested{
NamespaceSelectorNestedImpl(V1LabelSelector item) {
this.builder = new V1LabelSelectorBuilder(this, item);
}
NamespaceSelectorNestedImpl() {
this.builder = new V1LabelSelectorBuilder(this);
}
V1LabelSelectorBuilder builder;
public N and() {
return (N) V1PodAffinityTermFluentImpl.this.withNamespaceSelector(builder.build());
}
public N endNamespaceSelector() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy