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

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

package io.kubernetes.client.models;

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

public class PolicyV1beta1IDRangeFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements PolicyV1beta1IDRangeFluent{

    private Long max;
    private Long min;

    public PolicyV1beta1IDRangeFluentImpl(){
    }
    public PolicyV1beta1IDRangeFluentImpl(PolicyV1beta1IDRange instance){
            this.withMax(instance.getMax());

            this.withMin(instance.getMin());

    }

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

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

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

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

    public A withNewMax(long arg1){
            return (A)withMax(new Long(arg1));
    }

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

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

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

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

    public A withNewMin(long arg1){
            return (A)withMin(new Long(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;
            PolicyV1beta1IDRangeFluentImpl that = (PolicyV1beta1IDRangeFluentImpl) 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