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

io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ContainerResourceMetricStatusFluentImpl Maven / Gradle / Ivy

package io.fabric8.kubernetes.api.model.autoscaling.v2beta2;

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.Object;
import java.lang.Boolean;

public class ContainerResourceMetricStatusFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ContainerResourceMetricStatusFluent {

    private java.lang.String container;
    private io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatusBuilder current;
    private java.lang.String name;

    public ContainerResourceMetricStatusFluentImpl() {
    }

    public ContainerResourceMetricStatusFluentImpl(io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ContainerResourceMetricStatus instance) {
        this.withContainer(instance.getContainer()); 
        this.withCurrent(instance.getCurrent()); 
        this.withName(instance.getName()); 
    }

    public java.lang.String getContainer() {
        return this.container;
    }

    public A withContainer(java.lang.String container) {
        this.container=container; return (A) this;
    }

    public java.lang.Boolean hasContainer() {
        return this.container != null;
    }

    
    @java.lang.Deprecated
        
    /**
     * Method is deprecated. use withContainer instead.
     */
        public A withNewContainer(java.lang.String arg0) {
        return (A)withContainer(new String(arg0));
    }

    
    @java.lang.Deprecated
        
    /**
     * This method has been deprecated, please use method buildCurrent instead.
     * @return The buildable object.
     */
        public io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatus getCurrent() {
        return this.current!=null?this.current.build():null;
    }

    public io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatus buildCurrent() {
        return this.current!=null?this.current.build():null;
    }

    public A withCurrent(io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatus current) {
        _visitables.get("current").remove(this.current);
        if (current!=null){ this.current= new io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatusBuilder(current); _visitables.get("current").add(this.current);} return (A) this;
    }

    public java.lang.Boolean hasCurrent() {
        return this.current != null;
    }

    public io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ContainerResourceMetricStatusFluent.CurrentNested withNewCurrent() {
        return new io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ContainerResourceMetricStatusFluentImpl.CurrentNestedImpl();
    }

    public io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ContainerResourceMetricStatusFluent.CurrentNested withNewCurrentLike(io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatus item) {
        return new io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ContainerResourceMetricStatusFluentImpl.CurrentNestedImpl(item);
    }

    public io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ContainerResourceMetricStatusFluent.CurrentNested editCurrent() {
        return withNewCurrentLike(getCurrent());
    }

    public io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ContainerResourceMetricStatusFluent.CurrentNested editOrNewCurrent() {
        return withNewCurrentLike(getCurrent() != null ? getCurrent(): new io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatusBuilder().build());
    }

    public io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ContainerResourceMetricStatusFluent.CurrentNested editOrNewCurrentLike(io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatus item) {
        return withNewCurrentLike(getCurrent() != null ? getCurrent(): item);
    }

    public java.lang.String getName() {
        return this.name;
    }

    public A withName(java.lang.String name) {
        this.name=name; return (A) this;
    }

    public java.lang.Boolean hasName() {
        return this.name != null;
    }

    
    @java.lang.Deprecated
        
    /**
     * Method is deprecated. use withName instead.
     */
        public A withNewName(java.lang.String arg0) {
        return (A)withName(new String(arg0));
    }

    public boolean equals(java.lang.Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        ContainerResourceMetricStatusFluentImpl that = (ContainerResourceMetricStatusFluentImpl) o;
        if (container != null ? !container.equals(that.container) :that.container != null) return false;
        if (current != null ? !current.equals(that.current) :that.current != null) return false;
        if (name != null ? !name.equals(that.name) :that.name != null) return false;
        return true;
    }

    public int hashCode() {
        return java.util.Objects.hash(container,  current,  name,  super.hashCode());
    }

    public class CurrentNestedImpl extends io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatusFluentImpl> implements io.fabric8.kubernetes.api.model.autoscaling.v2beta2.ContainerResourceMetricStatusFluent.CurrentNested,io.fabric8.kubernetes.api.builder.Nested {
        private final io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatusBuilder builder;

            CurrentNestedImpl(io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatus item) {
                this.builder = new io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatusBuilder(this, item);
                        
            }

            CurrentNestedImpl() {
                this.builder = new io.fabric8.kubernetes.api.model.autoscaling.v2beta2.MetricValueStatusBuilder(this);
                        
            }

            public N and() {
                return (N) ContainerResourceMetricStatusFluentImpl.this.withCurrent(builder.build());
            }

            public N endCurrent() {
                return and();
            }
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy