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

io.fabric8.knative.eventing.v1alpha1.EventPolicySpecFromFluent Maven / Gradle / Ivy

The newest version!
package io.fabric8.knative.eventing.v1alpha1;

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

/**
 * Generated
 */
@SuppressWarnings("unchecked")
public class EventPolicySpecFromFluent> extends BaseFluent{
  public EventPolicySpecFromFluent() {
  }
  
  public EventPolicySpecFromFluent(EventPolicySpecFrom instance) {
    this.copyInstance(instance);
  }
  private EventPolicyFromReferenceBuilder ref;
  private String sub;
  private Map additionalProperties;
  
  protected void copyInstance(EventPolicySpecFrom instance) {
    instance = (instance != null ? instance : new EventPolicySpecFrom());
    if (instance != null) {
          this.withRef(instance.getRef());
          this.withSub(instance.getSub());
          this.withAdditionalProperties(instance.getAdditionalProperties());
        }
  }
  
  public EventPolicyFromReference buildRef() {
    return this.ref != null ? this.ref.build() : null;
  }
  
  public A withRef(EventPolicyFromReference ref) {
    this._visitables.remove("ref");
    if (ref != null) {
        this.ref = new EventPolicyFromReferenceBuilder(ref);
        this._visitables.get("ref").add(this.ref);
    } else {
        this.ref = null;
        this._visitables.get("ref").remove(this.ref);
    }
    return (A) this;
  }
  
  public boolean hasRef() {
    return this.ref != null;
  }
  
  public A withNewRef(String apiVersion,String kind,String name,String namespace) {
    return (A)withRef(new EventPolicyFromReference(apiVersion, kind, name, namespace));
  }
  
  public RefNested withNewRef() {
    return new RefNested(null);
  }
  
  public RefNested withNewRefLike(EventPolicyFromReference item) {
    return new RefNested(item);
  }
  
  public RefNested editRef() {
    return withNewRefLike(java.util.Optional.ofNullable(buildRef()).orElse(null));
  }
  
  public RefNested editOrNewRef() {
    return withNewRefLike(java.util.Optional.ofNullable(buildRef()).orElse(new EventPolicyFromReferenceBuilder().build()));
  }
  
  public RefNested editOrNewRefLike(EventPolicyFromReference item) {
    return withNewRefLike(java.util.Optional.ofNullable(buildRef()).orElse(item));
  }
  
  public String getSub() {
    return this.sub;
  }
  
  public A withSub(String sub) {
    this.sub = sub;
    return (A) this;
  }
  
  public boolean hasSub() {
    return this.sub != 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;
    EventPolicySpecFromFluent that = (EventPolicySpecFromFluent) o;
    if (!java.util.Objects.equals(ref, that.ref)) return false;
    if (!java.util.Objects.equals(sub, that.sub)) return false;
    if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
    return true;
  }
  
  public int hashCode() {
    return java.util.Objects.hash(ref,  sub,  additionalProperties,  super.hashCode());
  }
  
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    if (ref != null) { sb.append("ref:"); sb.append(ref + ","); }
    if (sub != null) { sb.append("sub:"); sb.append(sub + ","); }
    if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
    sb.append("}");
    return sb.toString();
  }
  public class RefNested extends EventPolicyFromReferenceFluent> implements Nested{
    RefNested(EventPolicyFromReference item) {
      this.builder = new EventPolicyFromReferenceBuilder(this, item);
    }
    EventPolicyFromReferenceBuilder builder;
    
    public N and() {
      return (N) EventPolicySpecFromFluent.this.withRef(builder.build());
    }
    
    public N endRef() {
      return and();
    }
    
  
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy