
io.kubernetes.client.models.V1ResourceQuotaSpecFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Nested;
import java.util.ArrayList;
import io.kubernetes.client.custom.Quantity;
import java.lang.String;
import io.kubernetes.client.fluent.Predicate;
import java.util.LinkedHashMap;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.Boolean;
import java.util.Map;
public class V1ResourceQuotaSpecFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1ResourceQuotaSpecFluent{
private Map hard;
private V1ScopeSelectorBuilder scopeSelector;
private List scopes;
public V1ResourceQuotaSpecFluentImpl(){
}
public V1ResourceQuotaSpecFluentImpl(V1ResourceQuotaSpec instance){
this.withHard(instance.getHard());
this.withScopeSelector(instance.getScopeSelector());
this.withScopes(instance.getScopes());
}
public A addToHard(String key,Quantity 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;
}
/**
* This method has been deprecated, please use method buildScopeSelector instead.
*/
@Deprecated public V1ScopeSelector getScopeSelector(){
return this.scopeSelector!=null?this.scopeSelector.build():null;
}
public V1ScopeSelector buildScopeSelector(){
return this.scopeSelector!=null?this.scopeSelector.build():null;
}
public A withScopeSelector(V1ScopeSelector scopeSelector){
_visitables.remove(this.scopeSelector);
if (scopeSelector!=null){ this.scopeSelector= new V1ScopeSelectorBuilder(scopeSelector); _visitables.add(this.scopeSelector);} return (A) this;
}
public Boolean hasScopeSelector(){
return this.scopeSelector != null;
}
public V1ResourceQuotaSpecFluent.ScopeSelectorNested withNewScopeSelector(){
return new ScopeSelectorNestedImpl();
}
public V1ResourceQuotaSpecFluent.ScopeSelectorNested withNewScopeSelectorLike(V1ScopeSelector item){
return new ScopeSelectorNestedImpl(item);
}
public V1ResourceQuotaSpecFluent.ScopeSelectorNested editScopeSelector(){
return withNewScopeSelectorLike(getScopeSelector());
}
public V1ResourceQuotaSpecFluent.ScopeSelectorNested editOrNewScopeSelector(){
return withNewScopeSelectorLike(getScopeSelector() != null ? getScopeSelector(): new V1ScopeSelectorBuilder().build());
}
public V1ResourceQuotaSpecFluent.ScopeSelectorNested editOrNewScopeSelectorLike(V1ScopeSelector item){
return withNewScopeSelectorLike(getScopeSelector() != null ? getScopeSelector(): item);
}
public A addToScopes(int index,String item){
if (this.scopes == null) {this.scopes = new ArrayList();}
this.scopes.add(index, item);
return (A)this;
}
public A setToScopes(int index,String item){
this.scopes.set(index, item); return (A)this;
}
public A addToScopes(String... items){
for (String item : items) {this.scopes.add(item);} return (A)this;
}
public A addAllToScopes(Collection items){
for (String item : items) {this.scopes.add(item);} return (A)this;
}
public A removeFromScopes(String... items){
for (String item : items) {if (this.scopes!= null){ this.scopes.remove(item);}} return (A)this;
}
public A removeAllFromScopes(Collection items){
for (String item : items) {if (this.scopes!= null){ this.scopes.remove(item);}} return (A)this;
}
public List getScopes(){
return this.scopes;
}
public String getScope(int index){
return this.scopes.get(index);
}
public String getFirstScope(){
return this.scopes.get(0);
}
public String getLastScope(){
return this.scopes.get(scopes.size() - 1);
}
public String getMatchingScope(io.kubernetes.client.fluent.Predicate predicate){
for (String item: scopes) { if(predicate.apply(item)){return item;} } return null;
}
public A withScopes(List scopes){
if (this.scopes != null) { _visitables.removeAll(this.scopes);}
if (scopes != null) {this.scopes = new ArrayList(); for (String item : scopes){this.addToScopes(item);}} else { this.scopes = null;} return (A) this;
}
public A withScopes(String... scopes){
this.scopes.clear(); if (scopes != null) {for (String item :scopes){ this.addToScopes(item);}} return (A) this;
}
public Boolean hasScopes(){
return scopes != null && !scopes.isEmpty();
}
public boolean equals(Object o){
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
V1ResourceQuotaSpecFluentImpl that = (V1ResourceQuotaSpecFluentImpl) o;
if (hard != null ? !hard.equals(that.hard) :that.hard != null) return false;
if (scopeSelector != null ? !scopeSelector.equals(that.scopeSelector) :that.scopeSelector != null) return false;
if (scopes != null ? !scopes.equals(that.scopes) :that.scopes != null) return false;
return true;
}
public class ScopeSelectorNestedImpl extends V1ScopeSelectorFluentImpl> implements V1ResourceQuotaSpecFluent.ScopeSelectorNested,io.kubernetes.client.fluent.Nested{
private final V1ScopeSelectorBuilder builder;
ScopeSelectorNestedImpl(V1ScopeSelector item){
this.builder = new V1ScopeSelectorBuilder(this, item);
}
ScopeSelectorNestedImpl(){
this.builder = new V1ScopeSelectorBuilder(this);
}
public N and(){
return (N) V1ResourceQuotaSpecFluentImpl.this.withScopeSelector(builder.build());
}
public N endScopeSelector(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy