io.kubernetes.client.openapi.models.V2beta2ExternalMetricStatusFluentImpl Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.lang.Deprecated;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
/**
* Generated
*/
@SuppressWarnings(value = "unchecked")
public class V2beta2ExternalMetricStatusFluentImpl> extends BaseFluent implements V2beta2ExternalMetricStatusFluent{
public V2beta2ExternalMetricStatusFluentImpl() {
}
public V2beta2ExternalMetricStatusFluentImpl(V2beta2ExternalMetricStatus instance) {
this.withCurrent(instance.getCurrent());
this.withMetric(instance.getMetric());
}
private V2beta2MetricValueStatusBuilder current;
private V2beta2MetricIdentifierBuilder metric;
/**
* This method has been deprecated, please use method buildCurrent instead.
* @return The buildable object.
*/
@Deprecated
public V2beta2MetricValueStatus getCurrent() {
return this.current!=null ?this.current.build():null;
}
public V2beta2MetricValueStatus buildCurrent() {
return this.current!=null ?this.current.build():null;
}
public A withCurrent(V2beta2MetricValueStatus current) {
_visitables.get("current").remove(this.current);
if (current!=null){ this.current= new V2beta2MetricValueStatusBuilder(current); _visitables.get("current").add(this.current);} else { this.current = null; _visitables.get("current").remove(this.current); } return (A) this;
}
public Boolean hasCurrent() {
return this.current != null;
}
public V2beta2ExternalMetricStatusFluent.CurrentNested withNewCurrent() {
return new V2beta2ExternalMetricStatusFluentImpl.CurrentNestedImpl();
}
public V2beta2ExternalMetricStatusFluent.CurrentNested withNewCurrentLike(V2beta2MetricValueStatus item) {
return new V2beta2ExternalMetricStatusFluentImpl.CurrentNestedImpl(item);
}
public V2beta2ExternalMetricStatusFluent.CurrentNested editCurrent() {
return withNewCurrentLike(getCurrent());
}
public V2beta2ExternalMetricStatusFluent.CurrentNested editOrNewCurrent() {
return withNewCurrentLike(getCurrent() != null ? getCurrent(): new V2beta2MetricValueStatusBuilder().build());
}
public V2beta2ExternalMetricStatusFluent.CurrentNested editOrNewCurrentLike(V2beta2MetricValueStatus item) {
return withNewCurrentLike(getCurrent() != null ? getCurrent(): item);
}
/**
* This method has been deprecated, please use method buildMetric instead.
* @return The buildable object.
*/
@Deprecated
public V2beta2MetricIdentifier getMetric() {
return this.metric!=null ?this.metric.build():null;
}
public V2beta2MetricIdentifier buildMetric() {
return this.metric!=null ?this.metric.build():null;
}
public A withMetric(V2beta2MetricIdentifier metric) {
_visitables.get("metric").remove(this.metric);
if (metric!=null){ this.metric= new V2beta2MetricIdentifierBuilder(metric); _visitables.get("metric").add(this.metric);} else { this.metric = null; _visitables.get("metric").remove(this.metric); } return (A) this;
}
public Boolean hasMetric() {
return this.metric != null;
}
public V2beta2ExternalMetricStatusFluent.MetricNested withNewMetric() {
return new V2beta2ExternalMetricStatusFluentImpl.MetricNestedImpl();
}
public V2beta2ExternalMetricStatusFluent.MetricNested withNewMetricLike(V2beta2MetricIdentifier item) {
return new V2beta2ExternalMetricStatusFluentImpl.MetricNestedImpl(item);
}
public V2beta2ExternalMetricStatusFluent.MetricNested editMetric() {
return withNewMetricLike(getMetric());
}
public V2beta2ExternalMetricStatusFluent.MetricNested editOrNewMetric() {
return withNewMetricLike(getMetric() != null ? getMetric(): new V2beta2MetricIdentifierBuilder().build());
}
public V2beta2ExternalMetricStatusFluent.MetricNested editOrNewMetricLike(V2beta2MetricIdentifier item) {
return withNewMetricLike(getMetric() != null ? getMetric(): item);
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
V2beta2ExternalMetricStatusFluentImpl that = (V2beta2ExternalMetricStatusFluentImpl) o;
if (current != null ? !current.equals(that.current) :that.current != null) return false;
if (metric != null ? !metric.equals(that.metric) :that.metric != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(current, metric, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (current != null) { sb.append("current:"); sb.append(current + ","); }
if (metric != null) { sb.append("metric:"); sb.append(metric); }
sb.append("}");
return sb.toString();
}
class CurrentNestedImpl extends V2beta2MetricValueStatusFluentImpl> implements V2beta2ExternalMetricStatusFluent.CurrentNested,Nested{
CurrentNestedImpl(V2beta2MetricValueStatus item) {
this.builder = new V2beta2MetricValueStatusBuilder(this, item);
}
CurrentNestedImpl() {
this.builder = new V2beta2MetricValueStatusBuilder(this);
}
V2beta2MetricValueStatusBuilder builder;
public N and() {
return (N) V2beta2ExternalMetricStatusFluentImpl.this.withCurrent(builder.build());
}
public N endCurrent() {
return and();
}
}
class MetricNestedImpl extends V2beta2MetricIdentifierFluentImpl> implements V2beta2ExternalMetricStatusFluent.MetricNested,Nested{
MetricNestedImpl(V2beta2MetricIdentifier item) {
this.builder = new V2beta2MetricIdentifierBuilder(this, item);
}
MetricNestedImpl() {
this.builder = new V2beta2MetricIdentifierBuilder(this);
}
V2beta2MetricIdentifierBuilder builder;
public N and() {
return (N) V2beta2ExternalMetricStatusFluentImpl.this.withMetric(builder.build());
}
public N endMetric() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy