io.fabric8.kubernetes.api.model.discovery.v1.EndpointPortFluent Maven / Gradle / Ivy
The newest version!
package io.fabric8.kubernetes.api.model.discovery.v1;
import java.lang.Integer;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.LinkedHashMap;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class EndpointPortFluent> extends BaseFluent{
public EndpointPortFluent() {
}
public EndpointPortFluent(EndpointPort instance) {
this.copyInstance(instance);
}
private String appProtocol;
private String name;
private Integer port;
private String protocol;
private Map additionalProperties;
protected void copyInstance(EndpointPort instance) {
instance = (instance != null ? instance : new EndpointPort());
if (instance != null) {
this.withAppProtocol(instance.getAppProtocol());
this.withName(instance.getName());
this.withPort(instance.getPort());
this.withProtocol(instance.getProtocol());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
}
public String getAppProtocol() {
return this.appProtocol;
}
public A withAppProtocol(String appProtocol) {
this.appProtocol = appProtocol;
return (A) this;
}
public boolean hasAppProtocol() {
return this.appProtocol != null;
}
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 Integer getPort() {
return this.port;
}
public A withPort(Integer port) {
this.port = port;
return (A) this;
}
public boolean hasPort() {
return this.port != null;
}
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;
EndpointPortFluent that = (EndpointPortFluent) o;
if (!java.util.Objects.equals(appProtocol, that.appProtocol)) return false;
if (!java.util.Objects.equals(name, that.name)) 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(appProtocol, name, port, protocol, additionalProperties, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (appProtocol != null) { sb.append("appProtocol:"); sb.append(appProtocol + ","); }
if (name != null) { sb.append("name:"); sb.append(name + ","); }
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();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy