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

io.fabric8.kubernetes.api.model.util.IntOrStringFluent Maven / Gradle / Ivy

package io.fabric8.kubernetes.api.model.util;

import java.util.HashMap;
import java.util.Map;
import io.sundr.builder.Fluent;

public class IntOrStringFluent> implements Fluent{

    private Integer IntVal ;
    private Integer Kind ;
    private String StrVal ;
    private Map additionalProperties  = new HashMap();

    public Integer getIntVal(){
    return this.IntVal;
    }
    public T withIntVal(Integer IntVal){
    this.IntVal=IntVal; return (T) this;
    }
    public Integer getKind(){
    return this.Kind;
    }
    public T withKind(Integer Kind){
    this.Kind=Kind; return (T) this;
    }
    public String getStrVal(){
    return this.StrVal;
    }
    public T withStrVal(String StrVal){
    this.StrVal=StrVal; return (T) this;
    }
    public Map getAdditionalProperties(){
    return this.additionalProperties;
    }
    public T withAdditionalProperties(Map additionalProperties){
    this.additionalProperties.clear();if (additionalProperties != null) {this.additionalProperties.putAll(additionalProperties);} return (T) this;
    }
    public T addToAdditionalProperties(String key, Object value){
    if(key != null && value != null) {this.additionalProperties.put(key, value);} return (T)this;
    }



}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy