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

io.kubernetes.client.openapi.models.V1ScopeSelectorFluentImpl 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 io.kubernetes.client.fluent.Predicate;
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;

public class V1ScopeSelectorFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1ScopeSelectorFluent {

    private List matchExpressions;

    public V1ScopeSelectorFluentImpl() { 
    }


    public V1ScopeSelectorFluentImpl(V1ScopeSelector instance) { 
        this.withMatchExpressions(instance.getMatchExpressions());

    }


    public A addToMatchExpressions(int index,V1ScopedResourceSelectorRequirement item) {
        if (this.matchExpressions == null) {this.matchExpressions = new ArrayList();}
        V1ScopedResourceSelectorRequirementBuilder builder = new V1ScopedResourceSelectorRequirementBuilder(item);_visitables.get("matchExpressions").add(index >= 0 ? index : _visitables.get("matchExpressions").size(), builder);this.matchExpressions.add(index >= 0 ? index : matchExpressions.size(), builder); return (A)this;
    }

    public A setToMatchExpressions(int index,V1ScopedResourceSelectorRequirement item) {
        if (this.matchExpressions == null) {this.matchExpressions = new ArrayList();}
        V1ScopedResourceSelectorRequirementBuilder builder = new V1ScopedResourceSelectorRequirementBuilder(item);
        if (index < 0 || index >= _visitables.get("matchExpressions").size()) { _visitables.get("matchExpressions").add(builder); } else { _visitables.get("matchExpressions").set(index, builder);}
        if (index < 0 || index >= matchExpressions.size()) { matchExpressions.add(builder); } else { matchExpressions.set(index, builder);}
         return (A)this;
    }

    public A addToMatchExpressions(V1ScopedResourceSelectorRequirement... items) {
        if (this.matchExpressions == null) {this.matchExpressions = new ArrayList();}
        for (V1ScopedResourceSelectorRequirement item : items) {V1ScopedResourceSelectorRequirementBuilder builder = new V1ScopedResourceSelectorRequirementBuilder(item);_visitables.get("matchExpressions").add(builder);this.matchExpressions.add(builder);} return (A)this;
    }

    public A addAllToMatchExpressions(Collection items) {
        if (this.matchExpressions == null) {this.matchExpressions = new ArrayList();}
        for (V1ScopedResourceSelectorRequirement item : items) {V1ScopedResourceSelectorRequirementBuilder builder = new V1ScopedResourceSelectorRequirementBuilder(item);_visitables.get("matchExpressions").add(builder);this.matchExpressions.add(builder);} return (A)this;
    }

    public A removeFromMatchExpressions(V1ScopedResourceSelectorRequirement... items) {
        for (V1ScopedResourceSelectorRequirement item : items) {V1ScopedResourceSelectorRequirementBuilder builder = new V1ScopedResourceSelectorRequirementBuilder(item);_visitables.get("matchExpressions").remove(builder);if (this.matchExpressions != null) {this.matchExpressions.remove(builder);}} return (A)this;
    }

    public A removeAllFromMatchExpressions(Collection items) {
        for (V1ScopedResourceSelectorRequirement item : items) {V1ScopedResourceSelectorRequirementBuilder builder = new V1ScopedResourceSelectorRequirementBuilder(item);_visitables.get("matchExpressions").remove(builder);if (this.matchExpressions != null) {this.matchExpressions.remove(builder);}} return (A)this;
    }

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

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

    public List buildMatchExpressions() {
        return build(matchExpressions);
    }

    public V1ScopedResourceSelectorRequirement buildMatchExpression(int index) {
        return this.matchExpressions.get(index).build();
    }

    public V1ScopedResourceSelectorRequirement buildFirstMatchExpression() {
        return this.matchExpressions.get(0).build();
    }

    public V1ScopedResourceSelectorRequirement buildLastMatchExpression() {
        return this.matchExpressions.get(matchExpressions.size() - 1).build();
    }

    public V1ScopedResourceSelectorRequirement buildMatchingMatchExpression(io.kubernetes.client.fluent.Predicate predicate) {
        for (V1ScopedResourceSelectorRequirementBuilder item: matchExpressions) { if(predicate.apply(item)){ return item.build();} } return null;
    }

    public Boolean hasMatchingMatchExpression(io.kubernetes.client.fluent.Predicate predicate) {
        for (V1ScopedResourceSelectorRequirementBuilder item: matchExpressions) { if(predicate.apply(item)){ return true;} } return false;
    }

    public A withMatchExpressions(List matchExpressions) {
        if (this.matchExpressions != null) { _visitables.get("matchExpressions").removeAll(this.matchExpressions);}
        if (matchExpressions != null) {this.matchExpressions = new ArrayList(); for (V1ScopedResourceSelectorRequirement item : matchExpressions){this.addToMatchExpressions(item);}} else { this.matchExpressions = null;} return (A) this;
    }

    public A withMatchExpressions(V1ScopedResourceSelectorRequirement... matchExpressions) {
        if (this.matchExpressions != null) {this.matchExpressions.clear();}
        if (matchExpressions != null) {for (V1ScopedResourceSelectorRequirement item :matchExpressions){ this.addToMatchExpressions(item);}} return (A) this;
    }

    public Boolean hasMatchExpressions() {
        return matchExpressions != null && !matchExpressions.isEmpty();
    }

    public V1ScopeSelectorFluent.MatchExpressionsNested addNewMatchExpression() {
        return new MatchExpressionsNestedImpl();
    }

    public V1ScopeSelectorFluent.MatchExpressionsNested addNewMatchExpressionLike(V1ScopedResourceSelectorRequirement item) {
        return new MatchExpressionsNestedImpl(-1, item);
    }

    public V1ScopeSelectorFluent.MatchExpressionsNested setNewMatchExpressionLike(int index,V1ScopedResourceSelectorRequirement item) {
        return new MatchExpressionsNestedImpl(index, item);
    }

    public V1ScopeSelectorFluent.MatchExpressionsNested editMatchExpression(int index) {
        if (matchExpressions.size() <= index) throw new RuntimeException("Can't edit matchExpressions. Index exceeds size.");
        return setNewMatchExpressionLike(index, buildMatchExpression(index));
    }

    public V1ScopeSelectorFluent.MatchExpressionsNested editFirstMatchExpression() {
        if (matchExpressions.size() == 0) throw new RuntimeException("Can't edit first matchExpressions. The list is empty.");
        return setNewMatchExpressionLike(0, buildMatchExpression(0));
    }

    public V1ScopeSelectorFluent.MatchExpressionsNested editLastMatchExpression() {
        int index = matchExpressions.size() - 1;
        if (index < 0) throw new RuntimeException("Can't edit last matchExpressions. The list is empty.");
        return setNewMatchExpressionLike(index, buildMatchExpression(index));
    }

    public V1ScopeSelectorFluent.MatchExpressionsNested editMatchingMatchExpression(io.kubernetes.client.fluent.Predicate predicate) {
        int index = -1;
        for (int i=0;i extends V1ScopedResourceSelectorRequirementFluentImpl> implements V1ScopeSelectorFluent.MatchExpressionsNested,io.kubernetes.client.fluent.Nested {
        private final V1ScopedResourceSelectorRequirementBuilder builder;
        private final int index;

        MatchExpressionsNestedImpl(int index,V1ScopedResourceSelectorRequirement item) {
            this.index = index;
            this.builder = new V1ScopedResourceSelectorRequirementBuilder(this, item);
        }

        MatchExpressionsNestedImpl() {
            this.index = -1;
            this.builder = new V1ScopedResourceSelectorRequirementBuilder(this);
        }

        public N and() {
             return (N) V1ScopeSelectorFluentImpl.this.setToMatchExpressions(index,builder.build());
        }

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


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy