
io.sundr.model.AttributeSupportFluent Maven / Gradle / Ivy
The newest version!
package io.sundr.model;
import java.lang.SuppressWarnings;
import io.sundr.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.LinkedHashMap;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class AttributeSupportFluent> extends BaseFluent{
public AttributeSupportFluent() {
}
public AttributeSupportFluent(AttributeSupport instance) {
this.copyInstance(instance);
}
private Map attributes = new LinkedHashMap();
protected void copyInstance(AttributeSupport instance) {
if (instance != null) {
this.withAttributes(instance.getAttributes());
}
}
public A addToAttributes(AttributeKey key,Object value) {
if(this.attributes == null && key != null && value != null) { this.attributes = new LinkedHashMap(); }
if(key != null && value != null) {this.attributes.put(key, value);} return (A)this;
}
public A addToAttributes(Map map) {
if(this.attributes == null && map != null) { this.attributes = new LinkedHashMap(); }
if(map != null) { this.attributes.putAll(map);} return (A)this;
}
public A removeFromAttributes(AttributeKey key) {
if(this.attributes == null) { return (A) this; }
if(key != null && this.attributes != null) {this.attributes.remove(key);} return (A)this;
}
public A removeFromAttributes(Map map) {
if(this.attributes == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.attributes != null){this.attributes.remove(key);}}} return (A)this;
}
public Map getAttributes() {
return this.attributes;
}
public A withAttributes(Map attributes) {
if (attributes == null) { this.attributes = null;} else {this.attributes = new LinkedHashMap(attributes);} return (A) this;
}
public boolean hasAttributes() {
return this.attributes != 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;
AttributeSupportFluent that = (AttributeSupportFluent) o;
if (!java.util.Objects.equals(attributes, that.attributes)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(attributes, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (attributes != null && !attributes.isEmpty()) { sb.append("attributes:"); sb.append(attributes); }
sb.append("}");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy