All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fabric8.openshift.api.model.installer.openstack.v1.MetadataFluent Maven / Gradle / Ivy

package io.fabric8.openshift.api.model.installer.openstack.v1;

import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.LinkedHashMap;

/**
 * Generated
 */
@SuppressWarnings("unchecked")
public class MetadataFluent> extends BaseFluent{
  public MetadataFluent() {
  }
  
  public MetadataFluent(Metadata instance) {
    this.copyInstance(instance);
  }
  private String cloud;
  private Map identifier;
  private Map additionalProperties;
  
  protected void copyInstance(Metadata instance) {
    instance = (instance != null ? instance : new Metadata());
    if (instance != null) {
          this.withCloud(instance.getCloud());
          this.withIdentifier(instance.getIdentifier());
          this.withAdditionalProperties(instance.getAdditionalProperties());
        }
  }
  
  public String getCloud() {
    return this.cloud;
  }
  
  public A withCloud(String cloud) {
    this.cloud = cloud;
    return (A) this;
  }
  
  public boolean hasCloud() {
    return this.cloud != null;
  }
  
  public A addToIdentifier(String key,String value) {
    if(this.identifier == null && key != null && value != null) { this.identifier = new LinkedHashMap(); }
    if(key != null && value != null) {this.identifier.put(key, value);} return (A)this;
  }
  
  public A addToIdentifier(Map map) {
    if(this.identifier == null && map != null) { this.identifier = new LinkedHashMap(); }
    if(map != null) { this.identifier.putAll(map);} return (A)this;
  }
  
  public A removeFromIdentifier(String key) {
    if(this.identifier == null) { return (A) this; }
    if(key != null && this.identifier != null) {this.identifier.remove(key);} return (A)this;
  }
  
  public A removeFromIdentifier(Map map) {
    if(this.identifier == null) { return (A) this; }
    if(map != null) { for(Object key : map.keySet()) {if (this.identifier != null){this.identifier.remove(key);}}} return (A)this;
  }
  
  public Map getIdentifier() {
    return this.identifier;
  }
  
  public A withIdentifier(Map identifier) {
    if (identifier == null) {
      this.identifier = null;
    } else {
      this.identifier = new LinkedHashMap(identifier);
    }
    return (A) this;
  }
  
  public boolean hasIdentifier() {
    return this.identifier != null;
  }
  
  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;
    MetadataFluent that = (MetadataFluent) o;
    if (!java.util.Objects.equals(cloud, that.cloud)) return false;
    if (!java.util.Objects.equals(identifier, that.identifier)) return false;
    if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
    return true;
  }
  
  public int hashCode() {
    return java.util.Objects.hash(cloud,  identifier,  additionalProperties,  super.hashCode());
  }
  
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    if (cloud != null) { sb.append("cloud:"); sb.append(cloud + ","); }
    if (identifier != null && !identifier.isEmpty()) { sb.append("identifier:"); sb.append(identifier + ","); }
    if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
    sb.append("}");
    return sb.toString();
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy