io.fabric8.kubernetes.api.model.extensions.IPBlockFluent Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.extensions;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.util.ArrayList;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.String;
import java.util.Map;
import java.util.LinkedHashMap;
import java.util.function.Predicate;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class IPBlockFluent> extends BaseFluent{
public IPBlockFluent() {
}
public IPBlockFluent(IPBlock instance) {
this.copyInstance(instance);
}
private String cidr;
private List except = new ArrayList();
private Map additionalProperties;
protected void copyInstance(IPBlock instance) {
instance = (instance != null ? instance : new IPBlock());
if (instance != null) {
this.withCidr(instance.getCidr());
this.withExcept(instance.getExcept());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
}
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 A addToAdditionalProperties(String key,Object value) {
if(this.additionalProperties == null && key != null && value != null) { this.additionalProperties = new LinkedHashMap(); }
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (A)this;
}
public A addToAdditionalProperties(Map map) {
if(this.additionalProperties == null && map != null) { this.additionalProperties = new LinkedHashMap(); }
if(map != null) { this.additionalProperties.putAll(map);} return (A)this;
}
public A removeFromAdditionalProperties(String key) {
if(this.additionalProperties == null) { return (A) this; }
if(key != null && this.additionalProperties != null) {this.additionalProperties.remove(key);} return (A)this;
}
public A removeFromAdditionalProperties(Map map) {
if(this.additionalProperties == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.additionalProperties != null){this.additionalProperties.remove(key);}}} return (A)this;
}
public Map getAdditionalProperties() {
return this.additionalProperties;
}
public A withAdditionalProperties(Map additionalProperties) {
if (additionalProperties == null) {
this.additionalProperties = null;
} else {
this.additionalProperties = new LinkedHashMap(additionalProperties);
}
return (A) this;
}
public boolean hasAdditionalProperties() {
return this.additionalProperties != null;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
if (!super.equals(o)) return false;
IPBlockFluent that = (IPBlockFluent) o;
if (!java.util.Objects.equals(cidr, that.cidr)) return false;
if (!java.util.Objects.equals(except, that.except)) return false;
if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(cidr, except, additionalProperties, 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 + ","); }
if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
sb.append("}");
return sb.toString();
}
}