io.fabric8.knative.sources.v1alpha1.TimerFluent Maven / Gradle / Ivy
The newest version!
package io.fabric8.knative.sources.v1alpha1;
import java.lang.Integer;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.LinkedHashMap;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class TimerFluent> extends BaseFluent{
public TimerFluent() {
}
public TimerFluent(Timer instance) {
this.copyInstance(instance);
}
private String contentType;
private String message;
private Integer period;
private Integer repeatCount;
private Map additionalProperties;
protected void copyInstance(Timer instance) {
instance = (instance != null ? instance : new Timer());
if (instance != null) {
this.withContentType(instance.getContentType());
this.withMessage(instance.getMessage());
this.withPeriod(instance.getPeriod());
this.withRepeatCount(instance.getRepeatCount());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
}
public String getContentType() {
return this.contentType;
}
public A withContentType(String contentType) {
this.contentType = contentType;
return (A) this;
}
public boolean hasContentType() {
return this.contentType != null;
}
public String getMessage() {
return this.message;
}
public A withMessage(String message) {
this.message = message;
return (A) this;
}
public boolean hasMessage() {
return this.message != null;
}
public Integer getPeriod() {
return this.period;
}
public A withPeriod(Integer period) {
this.period = period;
return (A) this;
}
public boolean hasPeriod() {
return this.period != null;
}
public Integer getRepeatCount() {
return this.repeatCount;
}
public A withRepeatCount(Integer repeatCount) {
this.repeatCount = repeatCount;
return (A) this;
}
public boolean hasRepeatCount() {
return this.repeatCount != 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;
TimerFluent that = (TimerFluent) o;
if (!java.util.Objects.equals(contentType, that.contentType)) return false;
if (!java.util.Objects.equals(message, that.message)) return false;
if (!java.util.Objects.equals(period, that.period)) return false;
if (!java.util.Objects.equals(repeatCount, that.repeatCount)) return false;
if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(contentType, message, period, repeatCount, additionalProperties, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (contentType != null) { sb.append("contentType:"); sb.append(contentType + ","); }
if (message != null) { sb.append("message:"); sb.append(message + ","); }
if (period != null) { sb.append("period:"); sb.append(period + ","); }
if (repeatCount != null) { sb.append("repeatCount:"); sb.append(repeatCount + ","); }
if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
sb.append("}");
return sb.toString();
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy