io.kubernetes.client.openapi.models.V1NonResourceRuleFluent 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.util.function.Predicate;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class V1NonResourceRuleFluent> extends BaseFluent{
public V1NonResourceRuleFluent() {
}
public V1NonResourceRuleFluent(V1NonResourceRule instance) {
this.copyInstance(instance);
}
private List nonResourceURLs;
private List verbs;
protected void copyInstance(V1NonResourceRule instance) {
instance = (instance != null ? instance : new V1NonResourceRule());
if (instance != null) {
this.withNonResourceURLs(instance.getNonResourceURLs());
this.withVerbs(instance.getVerbs());
}
}
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) {
if (this.nonResourceURLs == null) return (A)this;
for (String item : items) { this.nonResourceURLs.remove(item);} return (A)this;
}
public A removeAllFromNonResourceURLs(Collection items) {
if (this.nonResourceURLs == null) return (A)this;
for (String item : items) { 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 this.nonResourceURLs != null && !this.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) {
if (this.verbs == null) return (A)this;
for (String item : items) { this.verbs.remove(item);} return (A)this;
}
public A removeAllFromVerbs(Collection items) {
if (this.verbs == null) return (A)this;
for (String item : items) { 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 this.verbs != null && !this.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;
V1NonResourceRuleFluent that = (V1NonResourceRuleFluent) 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