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

io.kubernetes.client.models.V1CapabilitiesFluentImpl Maven / Gradle / Ivy

package io.kubernetes.client.models;

import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.BaseFluent;
import java.util.ArrayList;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.String;
import java.lang.Boolean;
import io.kubernetes.client.fluent.Predicate;

public class V1CapabilitiesFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1CapabilitiesFluent{

    private List add;
    private List drop;

    public V1CapabilitiesFluentImpl(){
    }
    public V1CapabilitiesFluentImpl(V1Capabilities instance){
            this.withAdd(instance.getAdd());

            this.withDrop(instance.getDrop());

    }

    public A addToAdd(int index,String item){
            if (this.add == null) {this.add = new ArrayList();}
            this.add.add(index, item);
            return (A)this;
    }

    public A setToAdd(int index,String item){
            this.add.set(index, item); return (A)this;
    }

    public A addToAdd(String... items){
            for (String item : items) {this.add.add(item);} return (A)this;
    }

    public A addAllToAdd(Collection items){
            for (String item : items) {this.add.add(item);} return (A)this;
    }

    public A removeFromAdd(String... items){
            for (String item : items) {if (this.add!= null){ this.add.remove(item);}} return (A)this;
    }

    public A removeAllFromAdd(Collection items){
            for (String item : items) {if (this.add!= null){ this.add.remove(item);}} return (A)this;
    }

    public List getAdd(){
            return this.add;
    }

    public String getAdd(int index){
            return this.add.get(index);
    }

    public String getFirstAdd(){
            return this.add.get(0);
    }

    public String getLastAdd(){
            return this.add.get(add.size() - 1);
    }

    public String getMatchingAdd(io.kubernetes.client.fluent.Predicate predicate){
            for (String item: add) { if(predicate.apply(item)){return item;} } return null;
    }

    public A withAdd(List add){
            if (this.add != null) { _visitables.removeAll(this.add);}
            if (add != null) {this.add = new ArrayList(); for (String item : add){this.addToAdd(item);}} else { this.add = null;} return (A) this;
    }

    public A withAdd(String... add){
            this.add.clear(); if (add != null) {for (String item :add){ this.addToAdd(item);}} return (A) this;
    }

    public Boolean hasAdd(){
            return add != null && !add.isEmpty();
    }

    public A addToDrop(int index,String item){
            if (this.drop == null) {this.drop = new ArrayList();}
            this.drop.add(index, item);
            return (A)this;
    }

    public A setToDrop(int index,String item){
            this.drop.set(index, item); return (A)this;
    }

    public A addToDrop(String... items){
            for (String item : items) {this.drop.add(item);} return (A)this;
    }

    public A addAllToDrop(Collection items){
            for (String item : items) {this.drop.add(item);} return (A)this;
    }

    public A removeFromDrop(String... items){
            for (String item : items) {if (this.drop!= null){ this.drop.remove(item);}} return (A)this;
    }

    public A removeAllFromDrop(Collection items){
            for (String item : items) {if (this.drop!= null){ this.drop.remove(item);}} return (A)this;
    }

    public List getDrop(){
            return this.drop;
    }

    public String getDrop(int index){
            return this.drop.get(index);
    }

    public String getFirstDrop(){
            return this.drop.get(0);
    }

    public String getLastDrop(){
            return this.drop.get(drop.size() - 1);
    }

    public String getMatchingDrop(io.kubernetes.client.fluent.Predicate predicate){
            for (String item: drop) { if(predicate.apply(item)){return item;} } return null;
    }

    public A withDrop(List drop){
            if (this.drop != null) { _visitables.removeAll(this.drop);}
            if (drop != null) {this.drop = new ArrayList(); for (String item : drop){this.addToDrop(item);}} else { this.drop = null;} return (A) this;
    }

    public A withDrop(String... drop){
            this.drop.clear(); if (drop != null) {for (String item :drop){ this.addToDrop(item);}} return (A) this;
    }

    public Boolean hasDrop(){
            return drop != null && !drop.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;
            V1CapabilitiesFluentImpl that = (V1CapabilitiesFluentImpl) o;
            if (add != null ? !add.equals(that.add) :that.add != null) return false;
            if (drop != null ? !drop.equals(that.drop) :that.drop != null) return false;
            return true;
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy