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

io.alauda.kubernetes.api.model.extensions.IDRangeFluentImpl Maven / Gradle / Ivy

There is a newer version: 0.2.12
Show newest version
package io.alauda.kubernetes.api.model.extensions;

import com.fasterxml.jackson.annotation.JsonProperty;
import io.alauda.kubernetes.api.builder.BaseFluent;
import java.lang.Long;
import java.lang.Object;
import java.lang.Boolean;

public class IDRangeFluentImpl> extends io.alauda.kubernetes.api.builder.BaseFluent implements io.alauda.kubernetes.api.model.extensions.IDRangeFluent{

    private Long max;
    private Long min;

    public IDRangeFluentImpl(){
    }
    public IDRangeFluentImpl(io.alauda.kubernetes.api.model.extensions.IDRange 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 Long getMin(){
            return this.min;
    }

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

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

    public boolean equals(Object o){
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;
            if (!super.equals(o)) return false;
            IDRangeFluentImpl that = (IDRangeFluentImpl) 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 - 2024 Weber Informatics LLC | Privacy Policy