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

io.kubernetes.client.openapi.models.V1alpha1SchedulingFluentImpl Maven / Gradle / Ivy

There is a newer version: 22.0.0
Show newest version
package io.kubernetes.client.openapi.models;

import io.kubernetes.client.fluent.VisitableBuilder;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Nested;
import java.util.ArrayList;
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.Iterator;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.Boolean;
import java.util.Map;

public class V1alpha1SchedulingFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1alpha1SchedulingFluent {

    private Map nodeSelector;
    private List tolerations;

    public V1alpha1SchedulingFluentImpl() { 
    }


    public V1alpha1SchedulingFluentImpl(V1alpha1Scheduling instance) { 
        this.withNodeSelector(instance.getNodeSelector());

        this.withTolerations(instance.getTolerations());

    }


    public A addToNodeSelector(String key,String value) {
        if(this.nodeSelector == null && key != null && value != null) { this.nodeSelector = new LinkedHashMap(); }
        if(key != null && value != null) {this.nodeSelector.put(key, value);} return (A)this;
    }

    public A addToNodeSelector(Map map) {
        if(this.nodeSelector == null && map != null) { this.nodeSelector = new LinkedHashMap(); }
        if(map != null) { this.nodeSelector.putAll(map);} return (A)this;
    }

    public A removeFromNodeSelector(String key) {
        if(this.nodeSelector == null) { return (A) this; }
        if(key != null && this.nodeSelector != null) {this.nodeSelector.remove(key);} return (A)this;
    }

    public A removeFromNodeSelector(Map map) {
        if(this.nodeSelector == null) { return (A) this; }
        if(map != null) { for(Object key : map.keySet()) {if (this.nodeSelector != null){this.nodeSelector.remove(key);}}} return (A)this;
    }

    public Map getNodeSelector() {
        return this.nodeSelector;
    }

    public A withNodeSelector(Map nodeSelector) {
        if (nodeSelector == null) { this.nodeSelector =  null;} else {this.nodeSelector = new LinkedHashMap(nodeSelector);} return (A) this;
    }

    public Boolean hasNodeSelector() {
        return this.nodeSelector != null;
    }

    public A addToTolerations(int index,V1Toleration item) {
        if (this.tolerations == null) {this.tolerations = new ArrayList();}
        V1TolerationBuilder builder = new V1TolerationBuilder(item);_visitables.get("tolerations").add(index >= 0 ? index : _visitables.get("tolerations").size(), builder);this.tolerations.add(index >= 0 ? index : tolerations.size(), builder); return (A)this;
    }

    public A setToTolerations(int index,V1Toleration item) {
        if (this.tolerations == null) {this.tolerations = new ArrayList();}
        V1TolerationBuilder builder = new V1TolerationBuilder(item);
        if (index < 0 || index >= _visitables.get("tolerations").size()) { _visitables.get("tolerations").add(builder); } else { _visitables.get("tolerations").set(index, builder);}
        if (index < 0 || index >= tolerations.size()) { tolerations.add(builder); } else { tolerations.set(index, builder);}
         return (A)this;
    }

    public A addToTolerations(V1Toleration... items) {
        if (this.tolerations == null) {this.tolerations = new ArrayList();}
        for (V1Toleration item : items) {V1TolerationBuilder builder = new V1TolerationBuilder(item);_visitables.get("tolerations").add(builder);this.tolerations.add(builder);} return (A)this;
    }

    public A addAllToTolerations(Collection items) {
        if (this.tolerations == null) {this.tolerations = new ArrayList();}
        for (V1Toleration item : items) {V1TolerationBuilder builder = new V1TolerationBuilder(item);_visitables.get("tolerations").add(builder);this.tolerations.add(builder);} return (A)this;
    }

    public A removeFromTolerations(V1Toleration... items) {
        for (V1Toleration item : items) {V1TolerationBuilder builder = new V1TolerationBuilder(item);_visitables.get("tolerations").remove(builder);if (this.tolerations != null) {this.tolerations.remove(builder);}} return (A)this;
    }

    public A removeAllFromTolerations(Collection items) {
        for (V1Toleration item : items) {V1TolerationBuilder builder = new V1TolerationBuilder(item);_visitables.get("tolerations").remove(builder);if (this.tolerations != null) {this.tolerations.remove(builder);}} return (A)this;
    }

    public A removeMatchingFromTolerations(io.kubernetes.client.fluent.Predicate predicate) {
        if (tolerations == null) return (A) this;
        final Iterator each = tolerations.iterator();
        final List visitables = _visitables.get("tolerations");
        while (each.hasNext()) {
          V1TolerationBuilder builder = each.next();
          if (predicate.apply(builder)) {
            visitables.remove(builder);
            each.remove();
          }
        }
        return (A)this;
    }

    
/**
 * This method has been deprecated, please use method buildTolerations instead.
 * @return The buildable object.
 */
@Deprecated public List getTolerations() {
        return build(tolerations);
    }

    public List buildTolerations() {
        return build(tolerations);
    }

    public V1Toleration buildToleration(int index) {
        return this.tolerations.get(index).build();
    }

    public V1Toleration buildFirstToleration() {
        return this.tolerations.get(0).build();
    }

    public V1Toleration buildLastToleration() {
        return this.tolerations.get(tolerations.size() - 1).build();
    }

    public V1Toleration buildMatchingToleration(io.kubernetes.client.fluent.Predicate predicate) {
        for (V1TolerationBuilder item: tolerations) { if(predicate.apply(item)){ return item.build();} } return null;
    }

    public Boolean hasMatchingToleration(io.kubernetes.client.fluent.Predicate predicate) {
        for (V1TolerationBuilder item: tolerations) { if(predicate.apply(item)){ return true;} } return false;
    }

    public A withTolerations(List tolerations) {
        if (this.tolerations != null) { _visitables.get("tolerations").removeAll(this.tolerations);}
        if (tolerations != null) {this.tolerations = new ArrayList(); for (V1Toleration item : tolerations){this.addToTolerations(item);}} else { this.tolerations = null;} return (A) this;
    }

    public A withTolerations(V1Toleration... tolerations) {
        if (this.tolerations != null) {this.tolerations.clear();}
        if (tolerations != null) {for (V1Toleration item :tolerations){ this.addToTolerations(item);}} return (A) this;
    }

    public Boolean hasTolerations() {
        return tolerations != null && !tolerations.isEmpty();
    }

    public V1alpha1SchedulingFluent.TolerationsNested addNewToleration() {
        return new TolerationsNestedImpl();
    }

    public V1alpha1SchedulingFluent.TolerationsNested addNewTolerationLike(V1Toleration item) {
        return new TolerationsNestedImpl(-1, item);
    }

    public V1alpha1SchedulingFluent.TolerationsNested setNewTolerationLike(int index,V1Toleration item) {
        return new TolerationsNestedImpl(index, item);
    }

    public V1alpha1SchedulingFluent.TolerationsNested editToleration(int index) {
        if (tolerations.size() <= index) throw new RuntimeException("Can't edit tolerations. Index exceeds size.");
        return setNewTolerationLike(index, buildToleration(index));
    }

    public V1alpha1SchedulingFluent.TolerationsNested editFirstToleration() {
        if (tolerations.size() == 0) throw new RuntimeException("Can't edit first tolerations. The list is empty.");
        return setNewTolerationLike(0, buildToleration(0));
    }

    public V1alpha1SchedulingFluent.TolerationsNested editLastToleration() {
        int index = tolerations.size() - 1;
        if (index < 0) throw new RuntimeException("Can't edit last tolerations. The list is empty.");
        return setNewTolerationLike(index, buildToleration(index));
    }

    public V1alpha1SchedulingFluent.TolerationsNested editMatchingToleration(io.kubernetes.client.fluent.Predicate predicate) {
        int index = -1;
        for (int i=0;i extends V1TolerationFluentImpl> implements V1alpha1SchedulingFluent.TolerationsNested,io.kubernetes.client.fluent.Nested {
        private final V1TolerationBuilder builder;
        private final int index;

        TolerationsNestedImpl(int index,V1Toleration item) {
            this.index = index;
            this.builder = new V1TolerationBuilder(this, item);
        }

        TolerationsNestedImpl() {
            this.index = -1;
            this.builder = new V1TolerationBuilder(this);
        }

        public N and() {
             return (N) V1alpha1SchedulingFluentImpl.this.setToTolerations(index,builder.build());
        }

        public N endToleration() {
             return and();
        }
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy