io.kubernetes.client.openapi.models.V1RBDVolumeSourceFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.Nested;
import java.util.ArrayList;
import java.lang.String;
import java.util.function.Predicate;
import io.kubernetes.client.fluent.BaseFluent;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.Boolean;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class V1RBDVolumeSourceFluent> extends BaseFluent{
public V1RBDVolumeSourceFluent() {
}
public V1RBDVolumeSourceFluent(V1RBDVolumeSource instance) {
this.copyInstance(instance);
}
private String fsType;
private String image;
private String keyring;
private List monitors;
private String pool;
private Boolean readOnly;
private V1LocalObjectReferenceBuilder secretRef;
private String user;
protected void copyInstance(V1RBDVolumeSource instance) {
instance = (instance != null ? instance : new V1RBDVolumeSource());
if (instance != null) {
this.withFsType(instance.getFsType());
this.withImage(instance.getImage());
this.withKeyring(instance.getKeyring());
this.withMonitors(instance.getMonitors());
this.withPool(instance.getPool());
this.withReadOnly(instance.getReadOnly());
this.withSecretRef(instance.getSecretRef());
this.withUser(instance.getUser());
}
}
public String getFsType() {
return this.fsType;
}
public A withFsType(String fsType) {
this.fsType = fsType;
return (A) this;
}
public boolean hasFsType() {
return this.fsType != null;
}
public String getImage() {
return this.image;
}
public A withImage(String image) {
this.image = image;
return (A) this;
}
public boolean hasImage() {
return this.image != null;
}
public String getKeyring() {
return this.keyring;
}
public A withKeyring(String keyring) {
this.keyring = keyring;
return (A) this;
}
public boolean hasKeyring() {
return this.keyring != null;
}
public A addToMonitors(int index,String item) {
if (this.monitors == null) {this.monitors = new ArrayList();}
this.monitors.add(index, item);
return (A)this;
}
public A setToMonitors(int index,String item) {
if (this.monitors == null) {this.monitors = new ArrayList();}
this.monitors.set(index, item); return (A)this;
}
public A addToMonitors(java.lang.String... items) {
if (this.monitors == null) {this.monitors = new ArrayList();}
for (String item : items) {this.monitors.add(item);} return (A)this;
}
public A addAllToMonitors(Collection items) {
if (this.monitors == null) {this.monitors = new ArrayList();}
for (String item : items) {this.monitors.add(item);} return (A)this;
}
public A removeFromMonitors(java.lang.String... items) {
if (this.monitors == null) return (A)this;
for (String item : items) { this.monitors.remove(item);} return (A)this;
}
public A removeAllFromMonitors(Collection items) {
if (this.monitors == null) return (A)this;
for (String item : items) { this.monitors.remove(item);} return (A)this;
}
public List getMonitors() {
return this.monitors;
}
public String getMonitor(int index) {
return this.monitors.get(index);
}
public String getFirstMonitor() {
return this.monitors.get(0);
}
public String getLastMonitor() {
return this.monitors.get(monitors.size() - 1);
}
public String getMatchingMonitor(Predicate predicate) {
for (String item : monitors) {
if (predicate.test(item)) {
return item;
}
}
return null;
}
public boolean hasMatchingMonitor(Predicate predicate) {
for (String item : monitors) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withMonitors(List monitors) {
if (monitors != null) {
this.monitors = new ArrayList();
for (String item : monitors) {
this.addToMonitors(item);
}
} else {
this.monitors = null;
}
return (A) this;
}
public A withMonitors(java.lang.String... monitors) {
if (this.monitors != null) {
this.monitors.clear();
_visitables.remove("monitors");
}
if (monitors != null) {
for (String item : monitors) {
this.addToMonitors(item);
}
}
return (A) this;
}
public boolean hasMonitors() {
return this.monitors != null && !this.monitors.isEmpty();
}
public String getPool() {
return this.pool;
}
public A withPool(String pool) {
this.pool = pool;
return (A) this;
}
public boolean hasPool() {
return this.pool != null;
}
public Boolean getReadOnly() {
return this.readOnly;
}
public A withReadOnly(Boolean readOnly) {
this.readOnly = readOnly;
return (A) this;
}
public boolean hasReadOnly() {
return this.readOnly != null;
}
public V1LocalObjectReference buildSecretRef() {
return this.secretRef != null ? this.secretRef.build() : null;
}
public A withSecretRef(V1LocalObjectReference secretRef) {
this._visitables.remove("secretRef");
if (secretRef != null) {
this.secretRef = new V1LocalObjectReferenceBuilder(secretRef);
this._visitables.get("secretRef").add(this.secretRef);
} else {
this.secretRef = null;
this._visitables.get("secretRef").remove(this.secretRef);
}
return (A) this;
}
public boolean hasSecretRef() {
return this.secretRef != null;
}
public SecretRefNested withNewSecretRef() {
return new SecretRefNested(null);
}
public SecretRefNested withNewSecretRefLike(V1LocalObjectReference item) {
return new SecretRefNested(item);
}
public SecretRefNested editSecretRef() {
return withNewSecretRefLike(java.util.Optional.ofNullable(buildSecretRef()).orElse(null));
}
public SecretRefNested editOrNewSecretRef() {
return withNewSecretRefLike(java.util.Optional.ofNullable(buildSecretRef()).orElse(new V1LocalObjectReferenceBuilder().build()));
}
public SecretRefNested editOrNewSecretRefLike(V1LocalObjectReference item) {
return withNewSecretRefLike(java.util.Optional.ofNullable(buildSecretRef()).orElse(item));
}
public String getUser() {
return this.user;
}
public A withUser(String user) {
this.user = user;
return (A) this;
}
public boolean hasUser() {
return this.user != 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;
V1RBDVolumeSourceFluent that = (V1RBDVolumeSourceFluent) o;
if (!java.util.Objects.equals(fsType, that.fsType)) return false;
if (!java.util.Objects.equals(image, that.image)) return false;
if (!java.util.Objects.equals(keyring, that.keyring)) return false;
if (!java.util.Objects.equals(monitors, that.monitors)) return false;
if (!java.util.Objects.equals(pool, that.pool)) return false;
if (!java.util.Objects.equals(readOnly, that.readOnly)) return false;
if (!java.util.Objects.equals(secretRef, that.secretRef)) return false;
if (!java.util.Objects.equals(user, that.user)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(fsType, image, keyring, monitors, pool, readOnly, secretRef, user, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (fsType != null) { sb.append("fsType:"); sb.append(fsType + ","); }
if (image != null) { sb.append("image:"); sb.append(image + ","); }
if (keyring != null) { sb.append("keyring:"); sb.append(keyring + ","); }
if (monitors != null && !monitors.isEmpty()) { sb.append("monitors:"); sb.append(monitors + ","); }
if (pool != null) { sb.append("pool:"); sb.append(pool + ","); }
if (readOnly != null) { sb.append("readOnly:"); sb.append(readOnly + ","); }
if (secretRef != null) { sb.append("secretRef:"); sb.append(secretRef + ","); }
if (user != null) { sb.append("user:"); sb.append(user); }
sb.append("}");
return sb.toString();
}
public A withReadOnly() {
return withReadOnly(true);
}
public class SecretRefNested extends V1LocalObjectReferenceFluent> implements Nested{
SecretRefNested(V1LocalObjectReference item) {
this.builder = new V1LocalObjectReferenceBuilder(this, item);
}
V1LocalObjectReferenceBuilder builder;
public N and() {
return (N) V1RBDVolumeSourceFluent.this.withSecretRef(builder.build());
}
public N endSecretRef() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy