
io.kubernetes.client.models.V1ConfigMapFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.util.LinkedHashMap;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
import java.util.Map;
public class V1ConfigMapFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1ConfigMapFluent{
private String apiVersion;
private Map binaryData;
private Map data;
private String kind;
private V1ObjectMetaBuilder metadata;
public V1ConfigMapFluentImpl(){
}
public V1ConfigMapFluentImpl(V1ConfigMap instance){
this.withApiVersion(instance.getApiVersion());
this.withBinaryData(instance.getBinaryData());
this.withData(instance.getData());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
}
public String getApiVersion(){
return this.apiVersion;
}
public A withApiVersion(String apiVersion){
this.apiVersion=apiVersion; return (A) this;
}
public Boolean hasApiVersion(){
return this.apiVersion != null;
}
public A addToBinaryData(String key,byte[] value){
if(this.binaryData == null && key != null && value != null) { this.binaryData = new LinkedHashMap(); }
if(key != null && value != null) {this.binaryData.put(key, value);} return (A)this;
}
public A addToBinaryData(Map map){
if(this.binaryData == null && map != null) { this.binaryData = new LinkedHashMap(); }
if(map != null) { this.binaryData.putAll(map);} return (A)this;
}
public A removeFromBinaryData(String key){
if(this.binaryData == null) { return (A) this; }
if(key != null && this.binaryData != null) {this.binaryData.remove(key);} return (A)this;
}
public A removeFromBinaryData(Map map){
if(this.binaryData == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.binaryData != null){this.binaryData.remove(key);}}} return (A)this;
}
public Map getBinaryData(){
return this.binaryData;
}
public A withBinaryData(Map binaryData){
if (binaryData == null) { this.binaryData = null;} else {this.binaryData = new LinkedHashMap(binaryData);} return (A) this;
}
public Boolean hasBinaryData(){
return this.binaryData != null;
}
public A addToData(String key,String value){
if(this.data == null && key != null && value != null) { this.data = new LinkedHashMap(); }
if(key != null && value != null) {this.data.put(key, value);} return (A)this;
}
public A addToData(Map map){
if(this.data == null && map != null) { this.data = new LinkedHashMap(); }
if(map != null) { this.data.putAll(map);} return (A)this;
}
public A removeFromData(String key){
if(this.data == null) { return (A) this; }
if(key != null && this.data != null) {this.data.remove(key);} return (A)this;
}
public A removeFromData(Map map){
if(this.data == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.data != null){this.data.remove(key);}}} return (A)this;
}
public Map getData(){
return this.data;
}
public A withData(Map data){
if (data == null) { this.data = null;} else {this.data = new LinkedHashMap(data);} return (A) this;
}
public Boolean hasData(){
return this.data != null;
}
public String getKind(){
return this.kind;
}
public A withKind(String kind){
this.kind=kind; return (A) this;
}
public Boolean hasKind(){
return this.kind != null;
}
/**
* This method has been deprecated, please use method buildMetadata instead.
*/
@Deprecated public V1ObjectMeta getMetadata(){
return this.metadata!=null?this.metadata.build():null;
}
public V1ObjectMeta buildMetadata(){
return this.metadata!=null?this.metadata.build():null;
}
public A withMetadata(V1ObjectMeta metadata){
_visitables.remove(this.metadata);
if (metadata!=null){ this.metadata= new V1ObjectMetaBuilder(metadata); _visitables.add(this.metadata);} return (A) this;
}
public Boolean hasMetadata(){
return this.metadata != null;
}
public V1ConfigMapFluent.MetadataNested withNewMetadata(){
return new MetadataNestedImpl();
}
public V1ConfigMapFluent.MetadataNested withNewMetadataLike(V1ObjectMeta item){
return new MetadataNestedImpl(item);
}
public V1ConfigMapFluent.MetadataNested editMetadata(){
return withNewMetadataLike(getMetadata());
}
public V1ConfigMapFluent.MetadataNested editOrNewMetadata(){
return withNewMetadataLike(getMetadata() != null ? getMetadata(): new V1ObjectMetaBuilder().build());
}
public V1ConfigMapFluent.MetadataNested editOrNewMetadataLike(V1ObjectMeta item){
return withNewMetadataLike(getMetadata() != null ? getMetadata(): item);
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1ConfigMapFluentImpl that = (V1ConfigMapFluentImpl) o;
if (apiVersion != null ? !apiVersion.equals(that.apiVersion) :that.apiVersion != null) return false;
if (binaryData != null ? !binaryData.equals(that.binaryData) :that.binaryData != null) return false;
if (data != null ? !data.equals(that.data) :that.data != null) return false;
if (kind != null ? !kind.equals(that.kind) :that.kind != null) return false;
if (metadata != null ? !metadata.equals(that.metadata) :that.metadata != null) return false;
return true;
}
public class MetadataNestedImpl extends V1ObjectMetaFluentImpl> implements V1ConfigMapFluent.MetadataNested,io.kubernetes.client.fluent.Nested{
private final V1ObjectMetaBuilder builder;
MetadataNestedImpl(V1ObjectMeta item){
this.builder = new V1ObjectMetaBuilder(this, item);
}
MetadataNestedImpl(){
this.builder = new V1ObjectMetaBuilder(this);
}
public N and(){
return (N) V1ConfigMapFluentImpl.this.withMetadata(builder.build());
}
public N endMetadata(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy