io.kubernetes.client.openapi.models.V1beta3NonResourcePolicyRuleFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.SuppressWarnings;
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 java.util.function.Predicate;
/**
* Generated
*/
@SuppressWarnings(value = "unchecked")
public class V1beta3NonResourcePolicyRuleFluentImpl> extends BaseFluent implements V1beta3NonResourcePolicyRuleFluent{
public V1beta3NonResourcePolicyRuleFluentImpl() {
}
public V1beta3NonResourcePolicyRuleFluentImpl(V1beta3NonResourcePolicyRule instance) {
if (instance != null) {
this.withNonResourceURLs(instance.getNonResourceURLs());
this.withVerbs(instance.getVerbs());
}
}
private List nonResourceURLs;
private List verbs;
public A addToNonResourceURLs(int index,String item) {
if (this.nonResourceURLs == null) {this.nonResourceURLs = new ArrayList();}
this.nonResourceURLs.add(index, item);
return (A)this;
}
public A setToNonResourceURLs(int index,String item) {
if (this.nonResourceURLs == null) {this.nonResourceURLs = new ArrayList();}
this.nonResourceURLs.set(index, item); return (A)this;
}
public A addToNonResourceURLs(java.lang.String... items) {
if (this.nonResourceURLs == null) {this.nonResourceURLs = new ArrayList();}
for (String item : items) {this.nonResourceURLs.add(item);} return (A)this;
}
public A addAllToNonResourceURLs(Collection items) {
if (this.nonResourceURLs == null) {this.nonResourceURLs = new ArrayList();}
for (String item : items) {this.nonResourceURLs.add(item);} return (A)this;
}
public A removeFromNonResourceURLs(java.lang.String... items) {
for (String item : items) {if (this.nonResourceURLs!= null){ this.nonResourceURLs.remove(item);}} return (A)this;
}
public A removeAllFromNonResourceURLs(Collection items) {
for (String item : items) {if (this.nonResourceURLs!= null){ this.nonResourceURLs.remove(item);}} return (A)this;
}
public List getNonResourceURLs() {
return this.nonResourceURLs;
}
public String getNonResourceURL(int index) {
return this.nonResourceURLs.get(index);
}
public String getFirstNonResourceURL() {
return this.nonResourceURLs.get(0);
}
public String getLastNonResourceURL() {
return this.nonResourceURLs.get(nonResourceURLs.size() - 1);
}
public String getMatchingNonResourceURL(Predicate predicate) {
for (String item: nonResourceURLs) { if(predicate.test(item)){ return item;} } return null;
}
public Boolean hasMatchingNonResourceURL(Predicate predicate) {
for (String item: nonResourceURLs) { if(predicate.test(item)){ return true;} } return false;
}
public A withNonResourceURLs(List nonResourceURLs) {
if (nonResourceURLs != null) {this.nonResourceURLs = new ArrayList(); for (String item : nonResourceURLs){this.addToNonResourceURLs(item);}} else { this.nonResourceURLs = null;} return (A) this;
}
public A withNonResourceURLs(java.lang.String... nonResourceURLs) {
if (this.nonResourceURLs != null) {this.nonResourceURLs.clear(); _visitables.remove("nonResourceURLs"); }
if (nonResourceURLs != null) {for (String item :nonResourceURLs){ this.addToNonResourceURLs(item);}} return (A) this;
}
public Boolean hasNonResourceURLs() {
return nonResourceURLs != null && !nonResourceURLs.isEmpty();
}
public A addToVerbs(int index,String item) {
if (this.verbs == null) {this.verbs = new ArrayList();}
this.verbs.add(index, item);
return (A)this;
}
public A setToVerbs(int index,String item) {
if (this.verbs == null) {this.verbs = new ArrayList();}
this.verbs.set(index, item); return (A)this;
}
public A addToVerbs(java.lang.String... items) {
if (this.verbs == null) {this.verbs = new ArrayList();}
for (String item : items) {this.verbs.add(item);} return (A)this;
}
public A addAllToVerbs(Collection items) {
if (this.verbs == null) {this.verbs = new ArrayList();}
for (String item : items) {this.verbs.add(item);} return (A)this;
}
public A removeFromVerbs(java.lang.String... items) {
for (String item : items) {if (this.verbs!= null){ this.verbs.remove(item);}} return (A)this;
}
public A removeAllFromVerbs(Collection items) {
for (String item : items) {if (this.verbs!= null){ this.verbs.remove(item);}} return (A)this;
}
public List getVerbs() {
return this.verbs;
}
public String getVerb(int index) {
return this.verbs.get(index);
}
public String getFirstVerb() {
return this.verbs.get(0);
}
public String getLastVerb() {
return this.verbs.get(verbs.size() - 1);
}
public String getMatchingVerb(Predicate predicate) {
for (String item: verbs) { if(predicate.test(item)){ return item;} } return null;
}
public Boolean hasMatchingVerb(Predicate predicate) {
for (String item: verbs) { if(predicate.test(item)){ return true;} } return false;
}
public A withVerbs(List verbs) {
if (verbs != null) {this.verbs = new ArrayList(); for (String item : verbs){this.addToVerbs(item);}} else { this.verbs = null;} return (A) this;
}
public A withVerbs(java.lang.String... verbs) {
if (this.verbs != null) {this.verbs.clear(); _visitables.remove("verbs"); }
if (verbs != null) {for (String item :verbs){ this.addToVerbs(item);}} return (A) this;
}
public Boolean hasVerbs() {
return verbs != null && !verbs.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;
V1beta3NonResourcePolicyRuleFluentImpl that = (V1beta3NonResourcePolicyRuleFluentImpl) o;
if (!java.util.Objects.equals(nonResourceURLs, that.nonResourceURLs)) return false;
if (!java.util.Objects.equals(verbs, that.verbs)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(nonResourceURLs, verbs, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (nonResourceURLs != null && !nonResourceURLs.isEmpty()) { sb.append("nonResourceURLs:"); sb.append(nonResourceURLs + ","); }
if (verbs != null && !verbs.isEmpty()) { sb.append("verbs:"); sb.append(verbs); }
sb.append("}");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy