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

io.kubernetes.client.openapi.models.V1ContainerStateBuilder Maven / Gradle / Ivy

There is a newer version: 22.0.0
Show newest version
package io.kubernetes.client.openapi.models;

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

public class V1ContainerStateBuilder extends V1ContainerStateFluentImpl implements VisitableBuilder {

    V1ContainerStateFluent fluent;
    Boolean validationEnabled;

    public V1ContainerStateBuilder() { 
        this(true);
    }


    public V1ContainerStateBuilder(Boolean validationEnabled) { 
        this(new V1ContainerState(), validationEnabled);
    }


    public V1ContainerStateBuilder(V1ContainerStateFluent fluent) { 
        this(fluent, true);
    }


    public V1ContainerStateBuilder(V1ContainerStateFluent fluent,Boolean validationEnabled) { 
        this(fluent, new V1ContainerState(), validationEnabled);
    }


    public V1ContainerStateBuilder(V1ContainerStateFluent fluent,V1ContainerState instance) { 
        this(fluent, instance, true);
    }


    public V1ContainerStateBuilder(V1ContainerStateFluent fluent,V1ContainerState instance,Boolean validationEnabled) { 
        this.fluent = fluent; 
        fluent.withRunning(instance.getRunning());

        fluent.withTerminated(instance.getTerminated());

        fluent.withWaiting(instance.getWaiting());

        this.validationEnabled = validationEnabled; 
    }


    public V1ContainerStateBuilder(V1ContainerState instance) { 
        this(instance,true);
    }


    public V1ContainerStateBuilder(V1ContainerState instance,Boolean validationEnabled) { 
        this.fluent = this; 
        this.withRunning(instance.getRunning());

        this.withTerminated(instance.getTerminated());

        this.withWaiting(instance.getWaiting());

        this.validationEnabled = validationEnabled; 
    }


    public V1ContainerState build() {
        V1ContainerState buildable = new V1ContainerState();
        buildable.setRunning(fluent.getRunning());
        buildable.setTerminated(fluent.getTerminated());
        buildable.setWaiting(fluent.getWaiting());
        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;
        V1ContainerStateBuilder that = (V1ContainerStateBuilder) 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;
    }

    public int hashCode() {
        return java.util.Objects.hash(fluent,  validationEnabled,  super.hashCode());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy