io.kubernetes.client.openapi.models.V1alpha3CELDeviceSelectorFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.BaseFluent;
import java.lang.Object;
import java.lang.String;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class V1alpha3CELDeviceSelectorFluent> extends BaseFluent{
public V1alpha3CELDeviceSelectorFluent() {
}
public V1alpha3CELDeviceSelectorFluent(V1alpha3CELDeviceSelector instance) {
this.copyInstance(instance);
}
private String expression;
protected void copyInstance(V1alpha3CELDeviceSelector instance) {
instance = (instance != null ? instance : new V1alpha3CELDeviceSelector());
if (instance != null) {
this.withExpression(instance.getExpression());
}
}
public String getExpression() {
return this.expression;
}
public A withExpression(String expression) {
this.expression = expression;
return (A) this;
}
public boolean hasExpression() {
return this.expression != 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;
V1alpha3CELDeviceSelectorFluent that = (V1alpha3CELDeviceSelectorFluent) o;
if (!java.util.Objects.equals(expression, that.expression)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(expression, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (expression != null) { sb.append("expression:"); sb.append(expression); }
sb.append("}");
return sb.toString();
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy