io.kubernetes.client.openapi.models.V1EndpointPortFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.Integer;
import java.lang.StringBuffer;
import java.lang.StringBuilder;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class V1EndpointPortFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1EndpointPortFluent {
private String appProtocol;
private String name;
private Integer port;
private String protocol;
public V1EndpointPortFluentImpl() {
}
public V1EndpointPortFluentImpl(V1EndpointPort instance) {
this.withAppProtocol(instance.getAppProtocol());
this.withName(instance.getName());
this.withPort(instance.getPort());
this.withProtocol(instance.getProtocol());
}
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 A withNewAppProtocol(String arg1) {
return (A)withAppProtocol(new String(arg1));
}
public A withNewAppProtocol(StringBuilder arg1) {
return (A)withAppProtocol(new String(arg1));
}
public A withNewAppProtocol(StringBuffer arg1) {
return (A)withAppProtocol(new String(arg1));
}
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 A withNewName(String arg1) {
return (A)withName(new String(arg1));
}
public A withNewName(StringBuilder arg1) {
return (A)withName(new String(arg1));
}
public A withNewName(StringBuffer arg1) {
return (A)withName(new String(arg1));
}
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 withNewProtocol(String arg1) {
return (A)withProtocol(new String(arg1));
}
public A withNewProtocol(StringBuilder arg1) {
return (A)withProtocol(new String(arg1));
}
public A withNewProtocol(StringBuffer arg1) {
return (A)withProtocol(new String(arg1));
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
V1EndpointPortFluentImpl that = (V1EndpointPortFluentImpl) o;
if (appProtocol != null ? !appProtocol.equals(that.appProtocol) :that.appProtocol != null) return false;
if (name != null ? !name.equals(that.name) :that.name != null) return false;
if (port != null ? !port.equals(that.port) :that.port != null) return false;
if (protocol != null ? !protocol.equals(that.protocol) :that.protocol != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(appProtocol, name, port, protocol, super.hashCode());
}
}