me.snowdrop.istio.adapter.prometheus.MetricInfo_BucketsDefinitionFluentImpl Maven / Gradle / Ivy
package me.snowdrop.istio.adapter.prometheus;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
public class MetricInfo_BucketsDefinitionFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements MetricInfo_BucketsDefinitionFluent{
private Object definition;
public MetricInfo_BucketsDefinitionFluentImpl(){
}
public MetricInfo_BucketsDefinitionFluentImpl(MetricInfo_BucketsDefinition instance){
this.withDefinition(instance.getDefinition());
}
public Object getDefinition(){
return this.definition;
}
public A withDefinition(Object definition){
this.definition=definition; return (A) this;
}
public Boolean hasDefinition(){
return this.definition != 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;
MetricInfo_BucketsDefinitionFluentImpl that = (MetricInfo_BucketsDefinitionFluentImpl) o;
if (definition != null &&definition != this ? !definition.equals(that.definition) :that.definition != null &&definition != this ) return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy