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

me.snowdrop.istio.api.NullValueKindFluentImpl Maven / Gradle / Ivy

There is a newer version: 1.7.7.1
Show newest version
package me.snowdrop.istio.api;

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

public class NullValueKindFluentImpl> extends io.fabric8.kubernetes.api.builder.BaseFluent implements NullValueKindFluent{

    private NullValue nullValue;

    public NullValueKindFluentImpl(){
    }
    public NullValueKindFluentImpl(NullValueKind instance){
            this.withNullValue(instance.getNullValue()); 
    }

    public NullValue getNullValue(){
            return this.nullValue;
    }

    public A withNullValue(NullValue nullValue){
            this.nullValue=nullValue; return (A) this;
    }

    public Boolean hasNullValue(){
            return this.nullValue != null;
    }

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




}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy