
io.kubernetes.client.models.V1beta1HTTPIngressRuleValueFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.models;
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.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.Boolean;
public class V1beta1HTTPIngressRuleValueFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1beta1HTTPIngressRuleValueFluent{
private List paths;
public V1beta1HTTPIngressRuleValueFluentImpl(){
}
public V1beta1HTTPIngressRuleValueFluentImpl(V1beta1HTTPIngressRuleValue instance){
this.withPaths(instance.getPaths());
}
public A addToPaths(int index,V1beta1HTTPIngressPath item){
if (this.paths == null) {this.paths = new ArrayList();}
V1beta1HTTPIngressPathBuilder builder = new V1beta1HTTPIngressPathBuilder(item);_visitables.add(index >= 0 ? index : _visitables.size(), builder);this.paths.add(index >= 0 ? index : paths.size(), builder); return (A)this;
}
public A setToPaths(int index,V1beta1HTTPIngressPath item){
if (this.paths == null) {this.paths = new ArrayList();}
V1beta1HTTPIngressPathBuilder builder = new V1beta1HTTPIngressPathBuilder(item);
if (index < 0 || index >= _visitables.size()) { _visitables.add(builder); } else { _visitables.set(index, builder);}
if (index < 0 || index >= paths.size()) { paths.add(builder); } else { paths.set(index, builder);}
return (A)this;
}
public A addToPaths(V1beta1HTTPIngressPath... items){
if (this.paths == null) {this.paths = new ArrayList();}
for (V1beta1HTTPIngressPath item : items) {V1beta1HTTPIngressPathBuilder builder = new V1beta1HTTPIngressPathBuilder(item);_visitables.add(builder);this.paths.add(builder);} return (A)this;
}
public A addAllToPaths(Collection items){
if (this.paths == null) {this.paths = new ArrayList();}
for (V1beta1HTTPIngressPath item : items) {V1beta1HTTPIngressPathBuilder builder = new V1beta1HTTPIngressPathBuilder(item);_visitables.add(builder);this.paths.add(builder);} return (A)this;
}
public A removeFromPaths(V1beta1HTTPIngressPath... items){
for (V1beta1HTTPIngressPath item : items) {V1beta1HTTPIngressPathBuilder builder = new V1beta1HTTPIngressPathBuilder(item);_visitables.remove(builder);if (this.paths != null) {this.paths.remove(builder);}} return (A)this;
}
public A removeAllFromPaths(Collection items){
for (V1beta1HTTPIngressPath item : items) {V1beta1HTTPIngressPathBuilder builder = new V1beta1HTTPIngressPathBuilder(item);_visitables.remove(builder);if (this.paths != null) {this.paths.remove(builder);}} return (A)this;
}
/**
* This method has been deprecated, please use method buildPaths instead.
*/
@Deprecated public List getPaths(){
return build(paths);
}
public List buildPaths(){
return build(paths);
}
public V1beta1HTTPIngressPath buildPath(int index){
return this.paths.get(index).build();
}
public V1beta1HTTPIngressPath buildFirstPath(){
return this.paths.get(0).build();
}
public V1beta1HTTPIngressPath buildLastPath(){
return this.paths.get(paths.size() - 1).build();
}
public V1beta1HTTPIngressPath buildMatchingPath(io.kubernetes.client.fluent.Predicate predicate){
for (V1beta1HTTPIngressPathBuilder item: paths) { if(predicate.apply(item)){return item.build();} } return null;
}
public A withPaths(List paths){
if (this.paths != null) { _visitables.removeAll(this.paths);}
if (paths != null) {this.paths = new ArrayList(); for (V1beta1HTTPIngressPath item : paths){this.addToPaths(item);}} else { this.paths = null;} return (A) this;
}
public A withPaths(V1beta1HTTPIngressPath... paths){
this.paths.clear(); if (paths != null) {for (V1beta1HTTPIngressPath item :paths){ this.addToPaths(item);}} return (A) this;
}
public Boolean hasPaths(){
return paths != null && !paths.isEmpty();
}
public V1beta1HTTPIngressRuleValueFluent.PathsNested addNewPath(){
return new PathsNestedImpl();
}
public V1beta1HTTPIngressRuleValueFluent.PathsNested addNewPathLike(V1beta1HTTPIngressPath item){
return new PathsNestedImpl(-1, item);
}
public V1beta1HTTPIngressRuleValueFluent.PathsNested setNewPathLike(int index,V1beta1HTTPIngressPath item){
return new PathsNestedImpl(index, item);
}
public V1beta1HTTPIngressRuleValueFluent.PathsNested editPath(int index){
if (paths.size() <= index) throw new RuntimeException("Can't edit paths. Index exceeds size.");
return setNewPathLike(index, buildPath(index));
}
public V1beta1HTTPIngressRuleValueFluent.PathsNested editFirstPath(){
if (paths.size() == 0) throw new RuntimeException("Can't edit first paths. The list is empty.");
return setNewPathLike(0, buildPath(0));
}
public V1beta1HTTPIngressRuleValueFluent.PathsNested editLastPath(){
int index = paths.size() - 1;
if (index < 0) throw new RuntimeException("Can't edit last paths. The list is empty.");
return setNewPathLike(index, buildPath(index));
}
public V1beta1HTTPIngressRuleValueFluent.PathsNested editMatchingPath(io.kubernetes.client.fluent.Predicate predicate){
int index = -1;
for (int i=0;i extends V1beta1HTTPIngressPathFluentImpl> implements V1beta1HTTPIngressRuleValueFluent.PathsNested,io.kubernetes.client.fluent.Nested{
private final V1beta1HTTPIngressPathBuilder builder;
private final int index;
PathsNestedImpl(int index,V1beta1HTTPIngressPath item){
this.index = index;
this.builder = new V1beta1HTTPIngressPathBuilder(this, item);
}
PathsNestedImpl(){
this.index = -1;
this.builder = new V1beta1HTTPIngressPathBuilder(this);
}
public N and(){
return (N) V1beta1HTTPIngressRuleValueFluentImpl.this.setToPaths(index, builder.build());
}
public N endPath(){
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy