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

io.fabric8.kubernetes.api.model.LimitRangeSpecFluentImpl Maven / Gradle / Ivy

There is a newer version: 6.13.4
Show newest version
package io.fabric8.kubernetes.api.model;

import java.util.List;
import java.util.ArrayList;
import java.util.RandomAccess;
import java.util.Map;
import java.util.Map;
import java.util.List;
import java.util.AbstractCollection;
import java.util.AbstractList;
import java.util.HashMap;
import java.io.Serializable;
import java.util.Collection;
import java.util.AbstractMap;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.Builder;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.util.List;
import io.fabric8.kubernetes.api.builder.Fluent;
import io.fabric8.kubernetes.api.builder.Nested;

public class LimitRangeSpecFluentImpl> extends BaseFluent implements LimitRangeSpecFluent{

     List> limits = new ArrayList();     Map additionalProperties = new HashMap();
public LimitRangeSpecFluentImpl(){
    
}
public LimitRangeSpecFluentImpl( LimitRangeSpec instance ){
    this.withLimits(instance.getLimits()); 
}

    public T addToLimits( LimitRangeItem ...items){
    for (LimitRangeItem item : items) {LimitRangeItemBuilder builder = new LimitRangeItemBuilder(item);_visitables.add(builder);this.limits.add(builder);} return (T)this;
    }
    public T removeFromLimits( LimitRangeItem ...items){
    for (LimitRangeItem item : items) {LimitRangeItemBuilder builder = new LimitRangeItemBuilder(item);_visitables.remove(builder);this.limits.remove(builder);} return (T)this;
    }
    public List getLimits(){
    return build(limits);
    }
    public T withLimits( List limits){
    this.limits.clear();if (limits != null) {for (LimitRangeItem item : limits){this.addToLimits(item);}} return (T) this;
    }
    public T withLimits( LimitRangeItem ...limits){
    this.limits.clear(); if (limits != null) {for (LimitRangeItem item :limits){ this.addToLimits(item);}} return (T) this;
    }
    public LimitsNested addNewLimit(){
    return new LimitsNestedImpl();
    }
    public LimitsNested addNewLimitLike( LimitRangeItem item){
    return new LimitsNestedImpl(item);
    }
    public T addToAdditionalProperties( String key,  Object value){
    if(key != null && value != null) {this.additionalProperties.put(key, value);} return (T)this;
    }
    public T addToAdditionalProperties( Map map){
    if(map != null) { this.additionalProperties.putAll(map);} return (T)this;
    }
    public T removeFromAdditionalProperties( String key){
    if(key != null) {this.additionalProperties.remove(key);} return (T)this;
    }
    public T removeFromAdditionalProperties( Map map){
    if(map != null) { for(Object key : map.keySet()) {this.additionalProperties.remove(key);}} return (T)this;
    }
    public Map getAdditionalProperties(){
    return this.additionalProperties;
    }
    public T withAdditionalProperties( Map additionalProperties){
    this.additionalProperties.clear();if (additionalProperties != null) {this.additionalProperties.putAll(additionalProperties);} return (T) this;
    }
    public boolean equals( Object o){
    
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
LimitRangeSpecFluentImpl that = (LimitRangeSpecFluentImpl) o;
if (limits != null ? !limits.equals(that.limits) :that.limits != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;

    }

    public class LimitsNestedImpl extends LimitRangeItemFluentImpl> implements LimitsNested{

        private final LimitRangeItemBuilder builder;
    
             LimitsNestedImpl (){
        this.builder = new LimitRangeItemBuilder(this);
        }
             LimitsNestedImpl ( LimitRangeItem item){
        this.builder = new LimitRangeItemBuilder(this, item);
        }
    
            public N and(){
            return (N) LimitRangeSpecFluentImpl.this.addToLimits(builder.build());
        }
            public N endLimit(){
            return and();
        }
    
}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy