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

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

package io.kubernetes.client.models;

import java.lang.Integer;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;

public class ExtensionsV1beta1HostPortRangeFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements ExtensionsV1beta1HostPortRangeFluent{

    private Integer max;
    private Integer min;

    public ExtensionsV1beta1HostPortRangeFluentImpl(){
    }
    public ExtensionsV1beta1HostPortRangeFluentImpl(ExtensionsV1beta1HostPortRange instance){
            this.withMax(instance.getMax());

            this.withMin(instance.getMin());

    }

    public Integer getMax(){
            return this.max;
    }

    public A withMax(Integer max){
            this.max=max; return (A) this;
    }

    public Boolean hasMax(){
            return this.max != null;
    }

    public A withNewMax(int arg1){
            return (A)withMax(new Integer(arg1));
    }

    public A withNewMax(String arg1){
            return (A)withMax(new Integer(arg1));
    }

    public Integer getMin(){
            return this.min;
    }

    public A withMin(Integer min){
            this.min=min; return (A) this;
    }

    public Boolean hasMin(){
            return this.min != null;
    }

    public A withNewMin(int arg1){
            return (A)withMin(new Integer(arg1));
    }

    public A withNewMin(String arg1){
            return (A)withMin(new Integer(arg1));
    }

    public boolean equals(Object o){
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;
            if (!super.equals(o)) return false;
            ExtensionsV1beta1HostPortRangeFluentImpl that = (ExtensionsV1beta1HostPortRangeFluentImpl) o;
            if (max != null ? !max.equals(that.max) :that.max != null) return false;
            if (min != null ? !min.equals(that.min) :that.min != null) return false;
            return true;
    }




}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy