io.fabric8.kubernetes.api.model.ConfigMapVolumeSourceFluentImpl Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model;
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 java.util.List;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.Builder;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import io.fabric8.kubernetes.api.builder.Visitable;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.builder.Fluent;
import io.fabric8.kubernetes.api.builder.Nested;
import java.util.List;
public class ConfigMapVolumeSourceFluentImpl> extends BaseFluent implements ConfigMapVolumeSourceFluent{
List> items = new ArrayList(); String name; Map additionalProperties = new HashMap();
public ConfigMapVolumeSourceFluentImpl(){
}
public ConfigMapVolumeSourceFluentImpl( ConfigMapVolumeSource instance ){
this.withItems(instance.getItems()); this.withName(instance.getName());
}
public T addToItems( KeyToPath ...items){
for (KeyToPath item : items) {KeyToPathBuilder builder = new KeyToPathBuilder(item);_visitables.add(builder);this.items.add(builder);} return (T)this;
}
public T removeFromItems( KeyToPath ...items){
for (KeyToPath item : items) {KeyToPathBuilder builder = new KeyToPathBuilder(item);_visitables.remove(builder);this.items.remove(builder);} return (T)this;
}
public List getItems(){
return build(items);
}
public T withItems( List items){
this.items.clear();if (items != null) {for (KeyToPath item : items){this.addToItems(item);}} return (T) this;
}
public T withItems( KeyToPath ...items){
this.items.clear(); if (items != null) {for (KeyToPath item :items){ this.addToItems(item);}} return (T) this;
}
public ItemsNested addNewItem(){
return new ItemsNestedImpl();
}
public ItemsNested addNewItemLike( KeyToPath item){
return new ItemsNestedImpl(item);
}
public T addNewItem( String key, String path){
return addToItems(new KeyToPath(key, path));
}
public String getName(){
return this.name;
}
public T withName( String name){
this.name=name; return (T) this;
}
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;
ConfigMapVolumeSourceFluentImpl that = (ConfigMapVolumeSourceFluentImpl) o;
if (items != null ? !items.equals(that.items) :that.items != null) return false;
if (name != null ? !name.equals(that.name) :that.name != null) return false;
if (additionalProperties != null ? !additionalProperties.equals(that.additionalProperties) :that.additionalProperties != null) return false;
return true;
}
public class ItemsNestedImpl extends KeyToPathFluentImpl> implements ItemsNested{
private final KeyToPathBuilder builder;
ItemsNestedImpl (){
this.builder = new KeyToPathBuilder(this);
}
ItemsNestedImpl ( KeyToPath item){
this.builder = new KeyToPathBuilder(this, item);
}
public N endItem(){
return and();
}
public N and(){
return (N) ConfigMapVolumeSourceFluentImpl.this.addToItems(builder.build());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy