io.kubernetes.client.openapi.models.V1IPBlockFluent 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 V1IPBlockFluent> extends BaseFluent{
public V1IPBlockFluent() {
}
public V1IPBlockFluent(V1IPBlock instance) {
this.copyInstance(instance);
}
private String cidr;
private List except;
protected void copyInstance(V1IPBlock instance) {
instance = (instance != null ? instance : new V1IPBlock());
if (instance != null) {
this.withCidr(instance.getCidr());
this.withExcept(instance.getExcept());
}
}
public String getCidr() {
return this.cidr;
}
public A withCidr(String cidr) {
this.cidr = cidr;
return (A) this;
}
public boolean hasCidr() {
return this.cidr != null;
}
public A addToExcept(int index,String item) {
if (this.except == null) {this.except = new ArrayList();}
this.except.add(index, item);
return (A)this;
}
public A setToExcept(int index,String item) {
if (this.except == null) {this.except = new ArrayList();}
this.except.set(index, item); return (A)this;
}
public A addToExcept(java.lang.String... items) {
if (this.except == null) {this.except = new ArrayList();}
for (String item : items) {this.except.add(item);} return (A)this;
}
public A addAllToExcept(Collection items) {
if (this.except == null) {this.except = new ArrayList();}
for (String item : items) {this.except.add(item);} return (A)this;
}
public A removeFromExcept(java.lang.String... items) {
if (this.except == null) return (A)this;
for (String item : items) { this.except.remove(item);} return (A)this;
}
public A removeAllFromExcept(Collection items) {
if (this.except == null) return (A)this;
for (String item : items) { this.except.remove(item);} return (A)this;
}
public List getExcept() {
return this.except;
}
public String getExcept(int index) {
return this.except.get(index);
}
public String getFirstExcept() {
return this.except.get(0);
}
public String getLastExcept() {
return this.except.get(except.size() - 1);
}
public String getMatchingExcept(Predicate predicate) {
for (String item : except) {
if (predicate.test(item)) {
return item;
}
}
return null;
}
public boolean hasMatchingExcept(Predicate predicate) {
for (String item : except) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withExcept(List except) {
if (except != null) {
this.except = new ArrayList();
for (String item : except) {
this.addToExcept(item);
}
} else {
this.except = null;
}
return (A) this;
}
public A withExcept(java.lang.String... except) {
if (this.except != null) {
this.except.clear();
_visitables.remove("except");
}
if (except != null) {
for (String item : except) {
this.addToExcept(item);
}
}
return (A) this;
}
public boolean hasExcept() {
return this.except != null && !this.except.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;
V1IPBlockFluent that = (V1IPBlockFluent) o;
if (!java.util.Objects.equals(cidr, that.cidr)) return false;
if (!java.util.Objects.equals(except, that.except)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(cidr, except, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (cidr != null) { sb.append("cidr:"); sb.append(cidr + ","); }
if (except != null && !except.isEmpty()) { sb.append("except:"); sb.append(except); }
sb.append("}");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy