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

io.kubernetes.client.models.V2beta1MetricStatusBuilder Maven / Gradle / Ivy

package io.kubernetes.client.models;

import io.kubernetes.client.fluent.VisitableBuilder;
import java.lang.Object;
import java.lang.Boolean;

public class V2beta1MetricStatusBuilder extends V2beta1MetricStatusFluentImpl implements VisitableBuilder{

    V2beta1MetricStatusFluent fluent;
    Boolean validationEnabled;

    public V2beta1MetricStatusBuilder(){
            this(true);
    }
    public V2beta1MetricStatusBuilder(Boolean validationEnabled){
            this(new V2beta1MetricStatus(), validationEnabled);
    }
    public V2beta1MetricStatusBuilder(V2beta1MetricStatusFluent fluent){
            this(fluent, true);
    }
    public V2beta1MetricStatusBuilder(V2beta1MetricStatusFluent fluent,Boolean validationEnabled){
            this(fluent, new V2beta1MetricStatus(), validationEnabled);
    }
    public V2beta1MetricStatusBuilder(V2beta1MetricStatusFluent fluent,V2beta1MetricStatus instance){
            this(fluent, instance, true);
    }
    public V2beta1MetricStatusBuilder(V2beta1MetricStatusFluent fluent,V2beta1MetricStatus instance,Boolean validationEnabled){
            this.fluent = fluent; 
            fluent.withExternal(instance.getExternal());

            fluent.withObject(instance.getObject());

            fluent.withPods(instance.getPods());

            fluent.withResource(instance.getResource());

            fluent.withType(instance.getType());

            this.validationEnabled = validationEnabled; 
    }
    public V2beta1MetricStatusBuilder(V2beta1MetricStatus instance){
            this(instance,true);
    }
    public V2beta1MetricStatusBuilder(V2beta1MetricStatus instance,Boolean validationEnabled){
            this.fluent = this; 
            this.withExternal(instance.getExternal());

            this.withObject(instance.getObject());

            this.withPods(instance.getPods());

            this.withResource(instance.getResource());

            this.withType(instance.getType());

            this.validationEnabled = validationEnabled; 
    }

    public V2beta1MetricStatus build(){
            V2beta1MetricStatus buildable = new V2beta1MetricStatus();
            buildable.setExternal(fluent.getExternal());
            buildable.setObject(fluent.getObject());
            buildable.setPods(fluent.getPods());
            buildable.setResource(fluent.getResource());
            buildable.setType(fluent.getType());
            return buildable;
    }

    public boolean equals(Object o){
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;
            if (!super.equals(o)) return false;
            V2beta1MetricStatusBuilder that = (V2beta1MetricStatusBuilder) o;
            if (fluent != null &&fluent != this ? !fluent.equals(that.fluent) :that.fluent != null &&fluent != this ) return false;

            if (validationEnabled != null ? !validationEnabled.equals(that.validationEnabled) :that.validationEnabled != null) return false;
            return true;
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy