
io.kubernetes.client.models.V1ListMetaFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
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 V1ListMetaFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1ListMetaFluent{
private String _continue;
private String resourceVersion;
private String selfLink;
public V1ListMetaFluentImpl(){
}
public V1ListMetaFluentImpl(V1ListMeta instance){
this.withContinue(instance.getContinue());
this.withResourceVersion(instance.getResourceVersion());
this.withSelfLink(instance.getSelfLink());
}
public String getContinue(){
return this._continue;
}
public A withContinue(String _continue){
this._continue=_continue; return (A) this;
}
public Boolean hasContinue(){
return this._continue != null;
}
public String getResourceVersion(){
return this.resourceVersion;
}
public A withResourceVersion(String resourceVersion){
this.resourceVersion=resourceVersion; return (A) this;
}
public Boolean hasResourceVersion(){
return this.resourceVersion != null;
}
public String getSelfLink(){
return this.selfLink;
}
public A withSelfLink(String selfLink){
this.selfLink=selfLink; return (A) this;
}
public Boolean hasSelfLink(){
return this.selfLink != 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;
V1ListMetaFluentImpl that = (V1ListMetaFluentImpl) o;
if (_continue != null ? !_continue.equals(that._continue) :that._continue != null) return false;
if (resourceVersion != null ? !resourceVersion.equals(that.resourceVersion) :that.resourceVersion != null) return false;
if (selfLink != null ? !selfLink.equals(that.selfLink) :that.selfLink != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy