io.kubernetes.client.openapi.models.V1ObjectFieldSelectorFluent Maven / Gradle / Ivy
The newest version!
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 V1ObjectFieldSelectorFluent> extends BaseFluent{
public V1ObjectFieldSelectorFluent() {
}
public V1ObjectFieldSelectorFluent(V1ObjectFieldSelector instance) {
this.copyInstance(instance);
}
private String apiVersion;
private String fieldPath;
protected void copyInstance(V1ObjectFieldSelector instance) {
instance = (instance != null ? instance : new V1ObjectFieldSelector());
if (instance != null) {
this.withApiVersion(instance.getApiVersion());
this.withFieldPath(instance.getFieldPath());
}
}
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 getFieldPath() {
return this.fieldPath;
}
public A withFieldPath(String fieldPath) {
this.fieldPath = fieldPath;
return (A) this;
}
public boolean hasFieldPath() {
return this.fieldPath != 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;
V1ObjectFieldSelectorFluent that = (V1ObjectFieldSelectorFluent) o;
if (!java.util.Objects.equals(apiVersion, that.apiVersion)) return false;
if (!java.util.Objects.equals(fieldPath, that.fieldPath)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(apiVersion, fieldPath, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (apiVersion != null) { sb.append("apiVersion:"); sb.append(apiVersion + ","); }
if (fieldPath != null) { sb.append("fieldPath:"); sb.append(fieldPath); }
sb.append("}");
return sb.toString();
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy