
io.fabric8.kubernetes.api.model.TCPSocketActionFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import io.fabric8.kubernetes.api.builder.Nested;
import java.lang.String;
import java.util.LinkedHashMap;
import java.lang.Integer;
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 TCPSocketActionFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.TCPSocketActionFluent{
public TCPSocketActionFluentImpl() {
}
public TCPSocketActionFluentImpl(io.fabric8.kubernetes.api.model.TCPSocketAction instance) {
this.withHost(instance.getHost());
this.withPort(instance.getPort());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
private java.lang.String host;
private io.fabric8.kubernetes.api.model.IntOrStringBuilder port;
private java.util.Map additionalProperties;
public java.lang.String getHost() {
return this.host;
}
public A withHost(java.lang.String host) {
this.host=host; return (A) this;
}
public java.lang.Boolean hasHost() {
return this.host != null;
}
/**
* Method is deprecated. use withHost instead.
*/
@java.lang.Deprecated
public A withNewHost(java.lang.String arg0) {
return (A)withHost(new String(arg0));
}
/**
* This method has been deprecated, please use method buildPort instead.
* @return The buildable object.
*/
@java.lang.Deprecated
public io.fabric8.kubernetes.api.model.IntOrString getPort() {
return this.port!=null?this.port.build():null;
}
public io.fabric8.kubernetes.api.model.IntOrString buildPort() {
return this.port!=null?this.port.build():null;
}
public A withPort(io.fabric8.kubernetes.api.model.IntOrString port) {
_visitables.get("port").remove(this.port);
if (port!=null){ this.port= new io.fabric8.kubernetes.api.model.IntOrStringBuilder(port); _visitables.get("port").add(this.port);} return (A) this;
}
public java.lang.Boolean hasPort() {
return this.port != null;
}
public A withNewPort(java.lang.Integer intVal) {
return (A)withPort(new IntOrString(intVal));
}
public A withNewPort(java.lang.String strVal) {
return (A)withPort(new IntOrString(strVal));
}
public io.fabric8.kubernetes.api.model.TCPSocketActionFluent.PortNested withNewPort() {
return new io.fabric8.kubernetes.api.model.TCPSocketActionFluentImpl.PortNestedImpl();
}
public io.fabric8.kubernetes.api.model.TCPSocketActionFluent.PortNested withNewPortLike(io.fabric8.kubernetes.api.model.IntOrString item) {
return new io.fabric8.kubernetes.api.model.TCPSocketActionFluentImpl.PortNestedImpl(item);
}
public io.fabric8.kubernetes.api.model.TCPSocketActionFluent.PortNested editPort() {
return withNewPortLike(getPort());
}
public io.fabric8.kubernetes.api.model.TCPSocketActionFluent.PortNested editOrNewPort() {
return withNewPortLike(getPort() != null ? getPort(): new io.fabric8.kubernetes.api.model.IntOrStringBuilder().build());
}
public io.fabric8.kubernetes.api.model.TCPSocketActionFluent.PortNested editOrNewPortLike(io.fabric8.kubernetes.api.model.IntOrString item) {
return withNewPortLike(getPort() != null ? getPort(): 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;
TCPSocketActionFluentImpl that = (TCPSocketActionFluentImpl) o;
if (host != null ? !host.equals(that.host) :that.host != null) return false;
if (port != null ? !port.equals(that.port) :that.port != 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(host, port, additionalProperties, super.hashCode());
}
public class PortNestedImpl extends io.fabric8.kubernetes.api.model.IntOrStringFluentImpl> implements io.fabric8.kubernetes.api.model.TCPSocketActionFluent.PortNested,io.fabric8.kubernetes.api.builder.Nested{
PortNestedImpl(io.fabric8.kubernetes.api.model.IntOrString item) {
this.builder = new io.fabric8.kubernetes.api.model.IntOrStringBuilder(this, item);
}
PortNestedImpl() {
this.builder = new io.fabric8.kubernetes.api.model.IntOrStringBuilder(this);
}
io.fabric8.kubernetes.api.model.IntOrStringBuilder builder;
public N and() {
return (N) TCPSocketActionFluentImpl.this.withPort(builder.build());
}
public N endPort() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy