All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kubernetes.client.models.V1ResourceQuotaStatusFluentImpl 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;
import java.util.Map;
import java.util.LinkedHashMap;

public class V1ResourceQuotaStatusFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1ResourceQuotaStatusFluent{

    private Map hard;
    private Map used;

    public V1ResourceQuotaStatusFluentImpl(){
    }
    public V1ResourceQuotaStatusFluentImpl(V1ResourceQuotaStatus instance){
            this.withHard(instance.getHard());

            this.withUsed(instance.getUsed());

    }

    public A addToHard(String key,String value){
            if(this.hard == null && key != null && value != null) { this.hard = new LinkedHashMap(); }
            if(key != null && value != null) {this.hard.put(key, value);} return (A)this;
    }

    public A addToHard(Map map){
            if(this.hard == null && map != null) { this.hard = new LinkedHashMap(); }
            if(map != null) { this.hard.putAll(map);} return (A)this;
    }

    public A removeFromHard(String key){
            if(this.hard == null) { return (A) this; }
            if(key != null && this.hard != null) {this.hard.remove(key);} return (A)this;
    }

    public A removeFromHard(Map map){
            if(this.hard == null) { return (A) this; }
            if(map != null) { for(Object key : map.keySet()) {if (this.hard != null){this.hard.remove(key);}}} return (A)this;
    }

    public Map getHard(){
            return this.hard;
    }

    public A withHard(Map hard){
            if (hard == null) { this.hard =  null;} else {this.hard = new LinkedHashMap(hard);} return (A) this;
    }

    public Boolean hasHard(){
            return this.hard != null;
    }

    public A addToUsed(String key,String value){
            if(this.used == null && key != null && value != null) { this.used = new LinkedHashMap(); }
            if(key != null && value != null) {this.used.put(key, value);} return (A)this;
    }

    public A addToUsed(Map map){
            if(this.used == null && map != null) { this.used = new LinkedHashMap(); }
            if(map != null) { this.used.putAll(map);} return (A)this;
    }

    public A removeFromUsed(String key){
            if(this.used == null) { return (A) this; }
            if(key != null && this.used != null) {this.used.remove(key);} return (A)this;
    }

    public A removeFromUsed(Map map){
            if(this.used == null) { return (A) this; }
            if(map != null) { for(Object key : map.keySet()) {if (this.used != null){this.used.remove(key);}}} return (A)this;
    }

    public Map getUsed(){
            return this.used;
    }

    public A withUsed(Map used){
            if (used == null) { this.used =  null;} else {this.used = new LinkedHashMap(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;
            V1ResourceQuotaStatusFluentImpl that = (V1ResourceQuotaStatusFluentImpl) 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;
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy