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

io.fabric8.knative.eventing.contrib.prometheus.v1alpha1.PrometheusSourceFluentImpl Maven / Gradle / Ivy

package io.fabric8.knative.eventing.contrib.prometheus.v1alpha1;

import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.Nested;
import java.lang.String;
import java.lang.Deprecated;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Boolean;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import io.fabric8.kubernetes.api.model.ObjectMetaFluentImpl;
import io.fabric8.kubernetes.api.model.ObjectMetaBuilder;
import java.lang.Object;

 /**
  * Generated
  */
  @SuppressWarnings(value = "unchecked")
  public class PrometheusSourceFluentImpl> extends BaseFluent implements PrometheusSourceFluent{
  public PrometheusSourceFluentImpl() {
  }
  public PrometheusSourceFluentImpl(PrometheusSource instance) {
    this.withApiVersion(instance.getApiVersion()); 
    this.withKind(instance.getKind()); 
    this.withMetadata(instance.getMetadata()); 
    this.withSpec(instance.getSpec()); 
    this.withStatus(instance.getStatus()); 
  }
  private String apiVersion;
  private String kind;
  private ObjectMetaBuilder metadata;
  private PrometheusSourceSpecBuilder spec;
  private PrometheusSourceStatusBuilder status;
  public String getApiVersion() {
    return this.apiVersion;
  }
  public A withApiVersion(String apiVersion) {
    this.apiVersion=apiVersion; return (A) this;
  }
  public Boolean hasApiVersion() {
    return this.apiVersion != null;
  }
  public String getKind() {
    return this.kind;
  }
  public A withKind(String kind) {
    this.kind=kind; return (A) this;
  }
  public Boolean hasKind() {
    return this.kind != null;
  }
  
  /**
   * This method has been deprecated, please use method buildMetadata instead.
   * @return The buildable object.
   */
  @Deprecated
  public ObjectMeta getMetadata() {
    return this.metadata!=null ?this.metadata.build():null;
  }
  public ObjectMeta buildMetadata() {
    return this.metadata!=null ?this.metadata.build():null;
  }
  public A withMetadata(ObjectMeta metadata) {
    _visitables.get("metadata").remove(this.metadata);
    if (metadata!=null){ this.metadata= new ObjectMetaBuilder(metadata); _visitables.get("metadata").add(this.metadata);} else { this.metadata = null; _visitables.get("metadata").remove(this.metadata); } return (A) this;
  }
  public Boolean hasMetadata() {
    return this.metadata != null;
  }
  public PrometheusSourceFluent.MetadataNested withNewMetadata() {
    return new PrometheusSourceFluentImpl.MetadataNestedImpl();
  }
  public PrometheusSourceFluent.MetadataNested withNewMetadataLike(ObjectMeta item) {
    return new PrometheusSourceFluentImpl.MetadataNestedImpl(item);
  }
  public PrometheusSourceFluent.MetadataNested editMetadata() {
    return withNewMetadataLike(getMetadata());
  }
  public PrometheusSourceFluent.MetadataNested editOrNewMetadata() {
    return withNewMetadataLike(getMetadata() != null ? getMetadata(): new ObjectMetaBuilder().build());
  }
  public PrometheusSourceFluent.MetadataNested editOrNewMetadataLike(ObjectMeta item) {
    return withNewMetadataLike(getMetadata() != null ? getMetadata(): item);
  }
  
  /**
   * This method has been deprecated, please use method buildSpec instead.
   * @return The buildable object.
   */
  @Deprecated
  public PrometheusSourceSpec getSpec() {
    return this.spec!=null ?this.spec.build():null;
  }
  public PrometheusSourceSpec buildSpec() {
    return this.spec!=null ?this.spec.build():null;
  }
  public A withSpec(PrometheusSourceSpec spec) {
    _visitables.get("spec").remove(this.spec);
    if (spec!=null){ this.spec= new PrometheusSourceSpecBuilder(spec); _visitables.get("spec").add(this.spec);} else { this.spec = null; _visitables.get("spec").remove(this.spec); } return (A) this;
  }
  public Boolean hasSpec() {
    return this.spec != null;
  }
  public PrometheusSourceFluent.SpecNested withNewSpec() {
    return new PrometheusSourceFluentImpl.SpecNestedImpl();
  }
  public PrometheusSourceFluent.SpecNested withNewSpecLike(PrometheusSourceSpec item) {
    return new PrometheusSourceFluentImpl.SpecNestedImpl(item);
  }
  public PrometheusSourceFluent.SpecNested editSpec() {
    return withNewSpecLike(getSpec());
  }
  public PrometheusSourceFluent.SpecNested editOrNewSpec() {
    return withNewSpecLike(getSpec() != null ? getSpec(): new PrometheusSourceSpecBuilder().build());
  }
  public PrometheusSourceFluent.SpecNested editOrNewSpecLike(PrometheusSourceSpec item) {
    return withNewSpecLike(getSpec() != null ? getSpec(): item);
  }
  
  /**
   * This method has been deprecated, please use method buildStatus instead.
   * @return The buildable object.
   */
  @Deprecated
  public PrometheusSourceStatus getStatus() {
    return this.status!=null ?this.status.build():null;
  }
  public PrometheusSourceStatus buildStatus() {
    return this.status!=null ?this.status.build():null;
  }
  public A withStatus(PrometheusSourceStatus status) {
    _visitables.get("status").remove(this.status);
    if (status!=null){ this.status= new PrometheusSourceStatusBuilder(status); _visitables.get("status").add(this.status);} else { this.status = null; _visitables.get("status").remove(this.status); } return (A) this;
  }
  public Boolean hasStatus() {
    return this.status != null;
  }
  public PrometheusSourceFluent.StatusNested withNewStatus() {
    return new PrometheusSourceFluentImpl.StatusNestedImpl();
  }
  public PrometheusSourceFluent.StatusNested withNewStatusLike(PrometheusSourceStatus item) {
    return new PrometheusSourceFluentImpl.StatusNestedImpl(item);
  }
  public PrometheusSourceFluent.StatusNested editStatus() {
    return withNewStatusLike(getStatus());
  }
  public PrometheusSourceFluent.StatusNested editOrNewStatus() {
    return withNewStatusLike(getStatus() != null ? getStatus(): new PrometheusSourceStatusBuilder().build());
  }
  public PrometheusSourceFluent.StatusNested editOrNewStatusLike(PrometheusSourceStatus item) {
    return withNewStatusLike(getStatus() != null ? getStatus(): item);
  }
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    PrometheusSourceFluentImpl that = (PrometheusSourceFluentImpl) o;
    if (apiVersion != null ? !apiVersion.equals(that.apiVersion) :that.apiVersion != null) return false;
    if (kind != null ? !kind.equals(that.kind) :that.kind != null) return false;
    if (metadata != null ? !metadata.equals(that.metadata) :that.metadata != null) return false;
    if (spec != null ? !spec.equals(that.spec) :that.spec != null) return false;
    if (status != null ? !status.equals(that.status) :that.status != null) return false;
    return true;
  }
  public int hashCode() {
    return java.util.Objects.hash(apiVersion,  kind,  metadata,  spec,  status,  super.hashCode());
  }
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    if (apiVersion != null) { sb.append("apiVersion:"); sb.append(apiVersion + ","); }
    if (kind != null) { sb.append("kind:"); sb.append(kind + ","); }
    if (metadata != null) { sb.append("metadata:"); sb.append(metadata + ","); }
    if (spec != null) { sb.append("spec:"); sb.append(spec + ","); }
    if (status != null) { sb.append("status:"); sb.append(status); }
    sb.append("}");
    return sb.toString();
  }
  class MetadataNestedImpl extends ObjectMetaFluentImpl> implements PrometheusSourceFluent.MetadataNested,Nested{
    MetadataNestedImpl(ObjectMeta item) {
      this.builder = new ObjectMetaBuilder(this, item);
    }
    MetadataNestedImpl() {
      this.builder = new ObjectMetaBuilder(this);
    }
    ObjectMetaBuilder builder;
    public N and() {
      return (N) PrometheusSourceFluentImpl.this.withMetadata(builder.build());
    }
    public N endMetadata() {
      return and();
    }
    
  }
  class SpecNestedImpl extends PrometheusSourceSpecFluentImpl> implements PrometheusSourceFluent.SpecNested,Nested{
    SpecNestedImpl(PrometheusSourceSpec item) {
      this.builder = new PrometheusSourceSpecBuilder(this, item);
    }
    SpecNestedImpl() {
      this.builder = new PrometheusSourceSpecBuilder(this);
    }
    PrometheusSourceSpecBuilder builder;
    public N and() {
      return (N) PrometheusSourceFluentImpl.this.withSpec(builder.build());
    }
    public N endSpec() {
      return and();
    }
    
  }
  class StatusNestedImpl extends PrometheusSourceStatusFluentImpl> implements PrometheusSourceFluent.StatusNested,Nested{
    StatusNestedImpl(PrometheusSourceStatus item) {
      this.builder = new PrometheusSourceStatusBuilder(this, item);
    }
    StatusNestedImpl() {
      this.builder = new PrometheusSourceStatusBuilder(this);
    }
    PrometheusSourceStatusBuilder builder;
    public N and() {
      return (N) PrometheusSourceFluentImpl.this.withStatus(builder.build());
    }
    public N endStatus() {
      return and();
    }
    
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy