
io.fabric8.kubernetes.api.model.GroupVersionResourceFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
import java.lang.StringBuffer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.lang.StringBuilder;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
public class GroupVersionResourceFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements GroupVersionResourceFluent{
private String group;
private String resource;
private String version;
public GroupVersionResourceFluentImpl(){
}
public GroupVersionResourceFluentImpl(GroupVersionResource instance){
this.withGroup(instance.getGroup());
this.withResource(instance.getResource());
this.withVersion(instance.getVersion());
}
public String getGroup(){
return this.group;
}
public A withGroup(String group){
this.group=group; return (A) this;
}
public Boolean hasGroup(){
return this.group != null;
}
public A withNewGroup(String arg1){
return (A)withGroup(new String(arg1));
}
public A withNewGroup(StringBuilder arg1){
return (A)withGroup(new String(arg1));
}
public A withNewGroup(StringBuffer arg1){
return (A)withGroup(new String(arg1));
}
public String getResource(){
return this.resource;
}
public A withResource(String resource){
this.resource=resource; return (A) this;
}
public Boolean hasResource(){
return this.resource != null;
}
public A withNewResource(String arg1){
return (A)withResource(new String(arg1));
}
public A withNewResource(StringBuilder arg1){
return (A)withResource(new String(arg1));
}
public A withNewResource(StringBuffer arg1){
return (A)withResource(new String(arg1));
}
public String getVersion(){
return this.version;
}
public A withVersion(String version){
this.version=version; return (A) this;
}
public Boolean hasVersion(){
return this.version != null;
}
public A withNewVersion(String arg1){
return (A)withVersion(new String(arg1));
}
public A withNewVersion(StringBuilder arg1){
return (A)withVersion(new String(arg1));
}
public A withNewVersion(StringBuffer arg1){
return (A)withVersion(new String(arg1));
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GroupVersionResourceFluentImpl that = (GroupVersionResourceFluentImpl) o;
if (group != null ? !group.equals(that.group) :that.group != null) return false;
if (resource != null ? !resource.equals(that.resource) :that.resource != null) return false;
if (version != null ? !version.equals(that.version) :that.version != null) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy