
io.kubernetes.client.models.V1DaemonEndpointFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
import java.lang.Integer;
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 V1DaemonEndpointFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1DaemonEndpointFluent{
private Integer port;
public V1DaemonEndpointFluentImpl(){
}
public V1DaemonEndpointFluentImpl(V1DaemonEndpoint instance){
this.withPort(instance.getPort());
}
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 A withNewPort(int arg1){
return (A)withPort(new Integer(arg1));
}
public A withNewPort(String arg1){
return (A)withPort(new Integer(arg1));
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1DaemonEndpointFluentImpl that = (V1DaemonEndpointFluentImpl) o;
if (port != null ? !port.equals(that.port) :that.port != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy