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

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

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

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

public class V1beta1IDRangeFluentImpl> extends io.kubernetes.client.fluent.BaseFluent implements V1beta1IDRangeFluent {

    private Long max;
    private Long min;

    public V1beta1IDRangeFluentImpl() { 
    }


    public V1beta1IDRangeFluentImpl(V1beta1IDRange 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;
        V1beta1IDRangeFluentImpl that = (V1beta1IDRangeFluentImpl) 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;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy