
io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricIdentifierFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.autoscaling.v2beta2;
import io.fabric8.kubernetes.api.model.LabelSelectorBuilder;
import io.fabric8.kubernetes.api.model.LabelSelectorFluentImpl;
import io.fabric8.kubernetes.api.builder.Nested;
import io.fabric8.kubernetes.api.model.LabelSelector;
import java.lang.String;
import java.util.LinkedHashMap;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
import java.util.Map;
/**
* Generated
*/
public class MetricIdentifierFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricIdentifierFluent{
public MetricIdentifierFluentImpl() {
}
public MetricIdentifierFluentImpl(io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricIdentifier instance) {
this.withName(instance.getName());
this.withSelector(instance.getSelector());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
private java.lang.String name;
private io.fabric8.kubernetes.api.model.LabelSelectorBuilder selector;
private java.util.Map additionalProperties;
public java.lang.String getName() {
return this.name;
}
public A withName(java.lang.String name) {
this.name=name; return (A) this;
}
public java.lang.Boolean hasName() {
return this.name != null;
}
/**
* Method is deprecated. use withName instead.
*/
@java.lang.Deprecated
public A withNewName(java.lang.String arg0) {
return (A)withName(new String(arg0));
}
/**
* This method has been deprecated, please use method buildSelector instead.
* @return The buildable object.
*/
@java.lang.Deprecated
public io.fabric8.kubernetes.api.model.LabelSelector getSelector() {
return this.selector!=null?this.selector.build():null;
}
public io.fabric8.kubernetes.api.model.LabelSelector buildSelector() {
return this.selector!=null?this.selector.build():null;
}
public A withSelector(io.fabric8.kubernetes.api.model.LabelSelector selector) {
_visitables.get("selector").remove(this.selector);
if (selector!=null){ this.selector= new io.fabric8.kubernetes.api.model.LabelSelectorBuilder(selector); _visitables.get("selector").add(this.selector);} return (A) this;
}
public java.lang.Boolean hasSelector() {
return this.selector != null;
}
public io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricIdentifierFluent.SelectorNested withNewSelector() {
return new io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricIdentifierFluentImpl.SelectorNestedImpl();
}
public io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricIdentifierFluent.SelectorNested withNewSelectorLike(io.fabric8.kubernetes.api.model.LabelSelector item) {
return new io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricIdentifierFluentImpl.SelectorNestedImpl(item);
}
public io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricIdentifierFluent.SelectorNested editSelector() {
return withNewSelectorLike(getSelector());
}
public io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricIdentifierFluent.SelectorNested editOrNewSelector() {
return withNewSelectorLike(getSelector() != null ? getSelector(): new io.fabric8.kubernetes.api.model.LabelSelectorBuilder().build());
}
public io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricIdentifierFluent.SelectorNested editOrNewSelectorLike(io.fabric8.kubernetes.api.model.LabelSelector item) {
return withNewSelectorLike(getSelector() != null ? getSelector(): item);
}
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;
MetricIdentifierFluentImpl that = (MetricIdentifierFluentImpl) o;
if (name != null ? !name.equals(that.name) :that.name != null) return false;
if (selector != null ? !selector.equals(that.selector) :that.selector != 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(name, selector, additionalProperties, super.hashCode());
}
public class SelectorNestedImpl extends io.fabric8.kubernetes.api.model.LabelSelectorFluentImpl> implements io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricIdentifierFluent.SelectorNested,io.fabric8.kubernetes.api.builder.Nested{
SelectorNestedImpl(io.fabric8.kubernetes.api.model.LabelSelector item) {
this.builder = new io.fabric8.kubernetes.api.model.LabelSelectorBuilder(this, item);
}
SelectorNestedImpl() {
this.builder = new io.fabric8.kubernetes.api.model.LabelSelectorBuilder(this);
}
io.fabric8.kubernetes.api.model.LabelSelectorBuilder builder;
public N and() {
return (N) MetricIdentifierFluentImpl.this.withSelector(builder.build());
}
public N endSelector() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy