io.kubernetes.client.openapi.models.V1IPBlockFluentImpl 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 V1IPBlockFluentImpl> extends BaseFluent implements V1IPBlockFluent{
public V1IPBlockFluentImpl() {
}
public V1IPBlockFluentImpl(V1IPBlock instance) {
if (instance != null) {
this.withCidr(instance.getCidr());
this.withExcept(instance.getExcept());
}
}
private String cidr;
private List except;
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) {
for (String item : items) {if (this.except!= null){ this.except.remove(item);}} return (A)this;
}
public A removeAllFromExcept(Collection items) {
for (String item : items) {if (this.except!= null){ 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 except != null && !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;
V1IPBlockFluentImpl that = (V1IPBlockFluentImpl) 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