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

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

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

import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.builder.VisitableBuilder;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.validation.Valid;
import java.util.ArrayList;
import java.lang.String;
import javax.validation.constraints.Pattern;
import java.lang.Object;
import io.fabric8.kubernetes.api.builder.Nested;

public class ConfigMapVolumeSourceFluentImpl> extends BaseFluent implements ConfigMapVolumeSourceFluent{

    private List> items =  new ArrayList>();
    private String name;

    public ConfigMapVolumeSourceFluentImpl(){
    }
    public ConfigMapVolumeSourceFluentImpl(ConfigMapVolumeSource instance){
            this.withItems(instance.getItems()); 
            this.withName(instance.getName()); 
    }

    public A addToItems(KeyToPath... items){
            for (KeyToPath item : items) {KeyToPathBuilder builder = new KeyToPathBuilder(item);_visitables.add(builder);this.items.add(builder);} return (A)this;
    }

    public A removeFromItems(KeyToPath... items){
            for (KeyToPath item : items) {KeyToPathBuilder builder = new KeyToPathBuilder(item);_visitables.remove(builder);this.items.remove(builder);} return (A)this;
    }

    public List getItems(){
            return build(items);
    }

    public A withItems(List items){
            this.items.clear();
            if (items != null) {for (KeyToPath item : items){this.addToItems(item);}} return (A) this;
    }

    public A withItems(KeyToPath... items){
            this.items.clear(); if (items != null) {for (KeyToPath item :items){ this.addToItems(item);}} return (A) this;
    }

    public ConfigMapVolumeSourceFluent.ItemsNested addNewItem(){
            return new ItemsNestedImpl();
    }

    public ConfigMapVolumeSourceFluent.ItemsNested addNewItemLike(KeyToPath item){
            return new ItemsNestedImpl(item);
    }

    public A addNewItem(String key,String path){
            return (A)addToItems(new KeyToPath(key, path));
    }

    public String getName(){
            return this.name;
    }

    public A withName(String name){
            this.name=name; return (A) this;
    }

    public boolean equals(Object o){
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;
            if (!super.equals(o)) 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;
            return true;
    }


    public class ItemsNestedImpl extends KeyToPathFluentImpl> implements ConfigMapVolumeSourceFluent.ItemsNested,Nested{

            private final KeyToPathBuilder builder;
    
            ItemsNestedImpl(KeyToPath item){
                    this.builder = new KeyToPathBuilder(this, item);
            }
            ItemsNestedImpl(){
                    this.builder = new KeyToPathBuilder(this);
            }
    
    public N endItem(){
            return and();
    }
    public N and(){
            return (N) ConfigMapVolumeSourceFluentImpl.this.addToItems(builder.build());
    }

}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy