io.fabric8.kubernetes.api.model.extensions.NetworkPolicyPortFluent Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.extensions;
import io.fabric8.kubernetes.api.model.IntOrString;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.Nested;
import java.lang.String;
import io.fabric8.kubernetes.api.model.IntOrStringFluent;
import io.fabric8.kubernetes.api.model.IntOrStringBuilder;
import java.util.LinkedHashMap;
import java.lang.Integer;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.util.Map;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class NetworkPolicyPortFluent> extends BaseFluent{
public NetworkPolicyPortFluent() {
}
public NetworkPolicyPortFluent(NetworkPolicyPort instance) {
this.copyInstance(instance);
}
private Integer endPort;
private IntOrStringBuilder port;
private String protocol;
private Map additionalProperties;
protected void copyInstance(NetworkPolicyPort instance) {
instance = (instance != null ? instance : new NetworkPolicyPort());
if (instance != null) {
this.withEndPort(instance.getEndPort());
this.withPort(instance.getPort());
this.withProtocol(instance.getProtocol());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
}
public Integer getEndPort() {
return this.endPort;
}
public A withEndPort(Integer endPort) {
this.endPort = endPort;
return (A) this;
}
public boolean hasEndPort() {
return this.endPort != null;
}
public IntOrString buildPort() {
return this.port != null ? this.port.build() : null;
}
public A withPort(IntOrString port) {
this._visitables.remove("port");
if (port != null) {
this.port = new IntOrStringBuilder(port);
this._visitables.get("port").add(this.port);
} else {
this.port = null;
this._visitables.get("port").remove(this.port);
}
return (A) this;
}
public boolean hasPort() {
return this.port != null;
}
public A withNewPort(Object value) {
return (A)withPort(new IntOrString(value));
}
public PortNested withNewPort() {
return new PortNested(null);
}
public PortNested withNewPortLike(IntOrString item) {
return new PortNested(item);
}
public PortNested editPort() {
return withNewPortLike(java.util.Optional.ofNullable(buildPort()).orElse(null));
}
public PortNested editOrNewPort() {
return withNewPortLike(java.util.Optional.ofNullable(buildPort()).orElse(new IntOrStringBuilder().build()));
}
public PortNested editOrNewPortLike(IntOrString item) {
return withNewPortLike(java.util.Optional.ofNullable(buildPort()).orElse(item));
}
public String getProtocol() {
return this.protocol;
}
public A withProtocol(String protocol) {
this.protocol = protocol;
return (A) this;
}
public boolean hasProtocol() {
return this.protocol != null;
}
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;
NetworkPolicyPortFluent that = (NetworkPolicyPortFluent) o;
if (!java.util.Objects.equals(endPort, that.endPort)) return false;
if (!java.util.Objects.equals(port, that.port)) return false;
if (!java.util.Objects.equals(protocol, that.protocol)) return false;
if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(endPort, port, protocol, additionalProperties, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (endPort != null) { sb.append("endPort:"); sb.append(endPort + ","); }
if (port != null) { sb.append("port:"); sb.append(port + ","); }
if (protocol != null) { sb.append("protocol:"); sb.append(protocol + ","); }
if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
sb.append("}");
return sb.toString();
}
public class PortNested extends IntOrStringFluent> implements Nested{
PortNested(IntOrString item) {
this.builder = new IntOrStringBuilder(this, item);
}
IntOrStringBuilder builder;
public N and() {
return (N) NetworkPolicyPortFluent.this.withPort(builder.build());
}
public N endPort() {
return and();
}
}
}