
io.fabric8.kubernetes.api.model.admissionregistration.v1alpha1.ParamRefFluent Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.admissionregistration.v1alpha1;
import io.fabric8.kubernetes.api.model.LabelSelectorBuilder;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.Nested;
import io.fabric8.kubernetes.api.model.LabelSelector;
import java.lang.String;
import java.util.LinkedHashMap;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import io.fabric8.kubernetes.api.model.LabelSelectorFluent;
import java.util.Map;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class ParamRefFluent> extends BaseFluent{
public ParamRefFluent() {
}
public ParamRefFluent(ParamRef instance) {
this.copyInstance(instance);
}
private String name;
private String namespace;
private String parameterNotFoundAction;
private LabelSelectorBuilder selector;
private Map additionalProperties;
protected void copyInstance(ParamRef instance) {
instance = (instance != null ? instance : new ParamRef());
if (instance != null) {
this.withName(instance.getName());
this.withNamespace(instance.getNamespace());
this.withParameterNotFoundAction(instance.getParameterNotFoundAction());
this.withSelector(instance.getSelector());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
}
public String getName() {
return this.name;
}
public A withName(String name) {
this.name = name;
return (A) this;
}
public boolean hasName() {
return this.name != null;
}
public String getNamespace() {
return this.namespace;
}
public A withNamespace(String namespace) {
this.namespace = namespace;
return (A) this;
}
public boolean hasNamespace() {
return this.namespace != null;
}
public String getParameterNotFoundAction() {
return this.parameterNotFoundAction;
}
public A withParameterNotFoundAction(String parameterNotFoundAction) {
this.parameterNotFoundAction = parameterNotFoundAction;
return (A) this;
}
public boolean hasParameterNotFoundAction() {
return this.parameterNotFoundAction != null;
}
public LabelSelector buildSelector() {
return this.selector != null ? this.selector.build() : null;
}
public A withSelector(LabelSelector selector) {
this._visitables.remove("selector");
if (selector != null) {
this.selector = new LabelSelectorBuilder(selector);
this._visitables.get("selector").add(this.selector);
} else {
this.selector = null;
this._visitables.get("selector").remove(this.selector);
}
return (A) this;
}
public boolean hasSelector() {
return this.selector != null;
}
public SelectorNested withNewSelector() {
return new SelectorNested(null);
}
public SelectorNested withNewSelectorLike(LabelSelector item) {
return new SelectorNested(item);
}
public SelectorNested editSelector() {
return withNewSelectorLike(java.util.Optional.ofNullable(buildSelector()).orElse(null));
}
public SelectorNested editOrNewSelector() {
return withNewSelectorLike(java.util.Optional.ofNullable(buildSelector()).orElse(new LabelSelectorBuilder().build()));
}
public SelectorNested editOrNewSelectorLike(LabelSelector item) {
return withNewSelectorLike(java.util.Optional.ofNullable(buildSelector()).orElse(item));
}
public A addToAdditionalProperties(String key,Object value) {
if(this.additionalProperties == null && key != null && value != null) { this.additionalProperties = new LinkedHashMap(); }
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (A)this;
}
public A addToAdditionalProperties(Map map) {
if(this.additionalProperties == null && map != null) { this.additionalProperties = new LinkedHashMap(); }
if(map != null) { this.additionalProperties.putAll(map);} return (A)this;
}
public A removeFromAdditionalProperties(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(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 Map getAdditionalProperties() {
return this.additionalProperties;
}
public A withAdditionalProperties(Map additionalProperties) {
if (additionalProperties == null) {
this.additionalProperties = null;
} else {
this.additionalProperties = new LinkedHashMap(additionalProperties);
}
return (A) this;
}
public boolean hasAdditionalProperties() {
return this.additionalProperties != 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;
ParamRefFluent that = (ParamRefFluent) o;
if (!java.util.Objects.equals(name, that.name)) return false;
if (!java.util.Objects.equals(namespace, that.namespace)) return false;
if (!java.util.Objects.equals(parameterNotFoundAction, that.parameterNotFoundAction)) return false;
if (!java.util.Objects.equals(selector, that.selector)) return false;
if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(name, namespace, parameterNotFoundAction, selector, additionalProperties, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (name != null) { sb.append("name:"); sb.append(name + ","); }
if (namespace != null) { sb.append("namespace:"); sb.append(namespace + ","); }
if (parameterNotFoundAction != null) { sb.append("parameterNotFoundAction:"); sb.append(parameterNotFoundAction + ","); }
if (selector != null) { sb.append("selector:"); sb.append(selector + ","); }
if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
sb.append("}");
return sb.toString();
}
public class SelectorNested extends LabelSelectorFluent> implements Nested{
SelectorNested(LabelSelector item) {
this.builder = new LabelSelectorBuilder(this, item);
}
LabelSelectorBuilder builder;
public N and() {
return (N) ParamRefFluent.this.withSelector(builder.build());
}
public N endSelector() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy