io.fabric8.kubernetes.api.model.scheduling.v1beta1.PriorityClassFluent Maven / Gradle / Ivy
The newest version!
package io.fabric8.kubernetes.api.model.scheduling.v1beta1;
import io.fabric8.kubernetes.api.model.ObjectMeta;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.Nested;
import java.lang.String;
import io.fabric8.kubernetes.api.model.ObjectMetaBuilder;
import java.util.LinkedHashMap;
import java.lang.Integer;
import io.fabric8.kubernetes.api.model.ObjectMetaFluent;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.Boolean;
import java.util.Map;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class PriorityClassFluent> extends BaseFluent{
public PriorityClassFluent() {
}
public PriorityClassFluent(PriorityClass instance) {
this.copyInstance(instance);
}
private String apiVersion;
private String description;
private Boolean globalDefault;
private String kind;
private ObjectMetaBuilder metadata;
private String preemptionPolicy;
private Integer value;
private Map additionalProperties;
protected void copyInstance(PriorityClass instance) {
instance = (instance != null ? instance : new PriorityClass());
if (instance != null) {
this.withApiVersion(instance.getApiVersion());
this.withDescription(instance.getDescription());
this.withGlobalDefault(instance.getGlobalDefault());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
this.withPreemptionPolicy(instance.getPreemptionPolicy());
this.withValue(instance.getValue());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
}
public String getApiVersion() {
return this.apiVersion;
}
public A withApiVersion(String apiVersion) {
this.apiVersion = apiVersion;
return (A) this;
}
public boolean hasApiVersion() {
return this.apiVersion != null;
}
public String getDescription() {
return this.description;
}
public A withDescription(String description) {
this.description = description;
return (A) this;
}
public boolean hasDescription() {
return this.description != null;
}
public Boolean getGlobalDefault() {
return this.globalDefault;
}
public A withGlobalDefault(Boolean globalDefault) {
this.globalDefault = globalDefault;
return (A) this;
}
public boolean hasGlobalDefault() {
return this.globalDefault != null;
}
public String getKind() {
return this.kind;
}
public A withKind(String kind) {
this.kind = kind;
return (A) this;
}
public boolean hasKind() {
return this.kind != null;
}
public ObjectMeta buildMetadata() {
return this.metadata != null ? this.metadata.build() : null;
}
public A withMetadata(ObjectMeta metadata) {
this._visitables.remove("metadata");
if (metadata != null) {
this.metadata = new ObjectMetaBuilder(metadata);
this._visitables.get("metadata").add(this.metadata);
} else {
this.metadata = null;
this._visitables.get("metadata").remove(this.metadata);
}
return (A) this;
}
public boolean hasMetadata() {
return this.metadata != null;
}
public MetadataNested withNewMetadata() {
return new MetadataNested(null);
}
public MetadataNested withNewMetadataLike(ObjectMeta item) {
return new MetadataNested(item);
}
public MetadataNested editMetadata() {
return withNewMetadataLike(java.util.Optional.ofNullable(buildMetadata()).orElse(null));
}
public MetadataNested editOrNewMetadata() {
return withNewMetadataLike(java.util.Optional.ofNullable(buildMetadata()).orElse(new ObjectMetaBuilder().build()));
}
public MetadataNested editOrNewMetadataLike(ObjectMeta item) {
return withNewMetadataLike(java.util.Optional.ofNullable(buildMetadata()).orElse(item));
}
public String getPreemptionPolicy() {
return this.preemptionPolicy;
}
public A withPreemptionPolicy(String preemptionPolicy) {
this.preemptionPolicy = preemptionPolicy;
return (A) this;
}
public boolean hasPreemptionPolicy() {
return this.preemptionPolicy != null;
}
public Integer getValue() {
return this.value;
}
public A withValue(Integer value) {
this.value = value;
return (A) this;
}
public boolean hasValue() {
return this.value != null;
}
public A addToAdditionalProperties(String key,Object value) {
if(this.additionalProperties == null && key != null && value != null) { this.additionalProperties = new LinkedHashMap(); }
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (A)this;
}
public A addToAdditionalProperties(Map map) {
if(this.additionalProperties == null && map != null) { this.additionalProperties = new LinkedHashMap(); }
if(map != null) { this.additionalProperties.putAll(map);} return (A)this;
}
public A removeFromAdditionalProperties(String key) {
if(this.additionalProperties == null) { return (A) this; }
if(key != null && this.additionalProperties != null) {this.additionalProperties.remove(key);} return (A)this;
}
public A removeFromAdditionalProperties(Map map) {
if(this.additionalProperties == null) { return (A) this; }
if(map != null) { for(Object key : map.keySet()) {if (this.additionalProperties != null){this.additionalProperties.remove(key);}}} return (A)this;
}
public Map getAdditionalProperties() {
return this.additionalProperties;
}
public A withAdditionalProperties(Map additionalProperties) {
if (additionalProperties == null) {
this.additionalProperties = null;
} else {
this.additionalProperties = new LinkedHashMap(additionalProperties);
}
return (A) this;
}
public boolean hasAdditionalProperties() {
return this.additionalProperties != 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;
PriorityClassFluent that = (PriorityClassFluent) o;
if (!java.util.Objects.equals(apiVersion, that.apiVersion)) return false;
if (!java.util.Objects.equals(description, that.description)) return false;
if (!java.util.Objects.equals(globalDefault, that.globalDefault)) return false;
if (!java.util.Objects.equals(kind, that.kind)) return false;
if (!java.util.Objects.equals(metadata, that.metadata)) return false;
if (!java.util.Objects.equals(preemptionPolicy, that.preemptionPolicy)) return false;
if (!java.util.Objects.equals(value, that.value)) return false;
if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(apiVersion, description, globalDefault, kind, metadata, preemptionPolicy, value, additionalProperties, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (apiVersion != null) { sb.append("apiVersion:"); sb.append(apiVersion + ","); }
if (description != null) { sb.append("description:"); sb.append(description + ","); }
if (globalDefault != null) { sb.append("globalDefault:"); sb.append(globalDefault + ","); }
if (kind != null) { sb.append("kind:"); sb.append(kind + ","); }
if (metadata != null) { sb.append("metadata:"); sb.append(metadata + ","); }
if (preemptionPolicy != null) { sb.append("preemptionPolicy:"); sb.append(preemptionPolicy + ","); }
if (value != null) { sb.append("value:"); sb.append(value + ","); }
if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
sb.append("}");
return sb.toString();
}
public A withGlobalDefault() {
return withGlobalDefault(true);
}
public class MetadataNested extends ObjectMetaFluent> implements Nested{
MetadataNested(ObjectMeta item) {
this.builder = new ObjectMetaBuilder(this, item);
}
ObjectMetaBuilder builder;
public N and() {
return (N) PriorityClassFluent.this.withMetadata(builder.build());
}
public N endMetadata() {
return and();
}
}
}