io.alauda.kubernetes.api.model.ResourceQuotaStatusFluentImpl Maven / Gradle / Ivy
package io.alauda.kubernetes.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.validation.Valid;
import io.alauda.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
import java.util.Map;
import java.util.LinkedHashMap;
public class ResourceQuotaStatusFluentImpl> extends io.alauda.kubernetes.api.builder.BaseFluent implements ResourceQuotaStatusFluent{
private Map hard = new LinkedHashMap();
private Map used = new LinkedHashMap();
public ResourceQuotaStatusFluentImpl(){
}
public ResourceQuotaStatusFluentImpl(ResourceQuotaStatus instance){
this.withHard(instance.getHard());
this.withUsed(instance.getUsed());
}
public A addToHard(String key,Quantity value){
if(key != null && value != null) {this.hard.put(key, value);} return (A)this;
}
public A addToHard(Map map){
if(map != null) { this.hard.putAll(map);} return (A)this;
}
public A removeFromHard(String key){
if(key != null) {this.hard.remove(key);} return (A)this;
}
public A removeFromHard(Map map){
if(map != null) { for(Object key : map.keySet()) {this.hard.remove(key);}} return (A)this;
}
public Map getHard(){
return this.hard;
}
public A withHard(Map hard){
this.hard.clear();
if (hard != null) {this.hard.putAll(hard);} return (A) this;
}
public Boolean hasHard(){
return this.hard!=null;
}
public A addToUsed(String key,Quantity value){
if(key != null && value != null) {this.used.put(key, value);} return (A)this;
}
public A addToUsed(Map map){
if(map != null) { this.used.putAll(map);} return (A)this;
}
public A removeFromUsed(String key){
if(key != null) {this.used.remove(key);} return (A)this;
}
public A removeFromUsed(Map map){
if(map != null) { for(Object key : map.keySet()) {this.used.remove(key);}} return (A)this;
}
public Map getUsed(){
return this.used;
}
public A withUsed(Map used){
this.used.clear();
if (used != null) {this.used.putAll(used);} return (A) this;
}
public Boolean hasUsed(){
return this.used!=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;
ResourceQuotaStatusFluentImpl that = (ResourceQuotaStatusFluentImpl) o;
if (hard != null ? !hard.equals(that.hard) :that.hard != null) return false;
if (used != null ? !used.equals(that.used) :that.used != null) return false;
return true;
}
}