
io.kubernetes.client.openapi.models.V1ComponentStatusFluentImpl Maven / Gradle / Ivy
/*
Copyright 2022 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package io.kubernetes.client.openapi.models;
import io.kubernetes.client.fluent.BaseFluent;
import io.kubernetes.client.fluent.Nested;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.function.Predicate;
/** Generated */
@SuppressWarnings(value = "unchecked")
public class V1ComponentStatusFluentImpl> extends BaseFluent
implements V1ComponentStatusFluent {
public V1ComponentStatusFluentImpl() {}
public V1ComponentStatusFluentImpl(
io.kubernetes.client.openapi.models.V1ComponentStatus instance) {
this.withApiVersion(instance.getApiVersion());
this.withConditions(instance.getConditions());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
}
private String apiVersion;
private ArrayList conditions;
private java.lang.String kind;
private V1ObjectMetaBuilder metadata;
public java.lang.String getApiVersion() {
return this.apiVersion;
}
public A withApiVersion(java.lang.String apiVersion) {
this.apiVersion = apiVersion;
return (A) this;
}
public Boolean hasApiVersion() {
return this.apiVersion != null;
}
public A addToConditions(
Integer index, io.kubernetes.client.openapi.models.V1ComponentCondition item) {
if (this.conditions == null) {
this.conditions = new java.util.ArrayList();
}
io.kubernetes.client.openapi.models.V1ComponentConditionBuilder builder =
new io.kubernetes.client.openapi.models.V1ComponentConditionBuilder(item);
_visitables
.get("conditions")
.add(index >= 0 ? index : _visitables.get("conditions").size(), builder);
this.conditions.add(index >= 0 ? index : conditions.size(), builder);
return (A) this;
}
public A setToConditions(
java.lang.Integer index, io.kubernetes.client.openapi.models.V1ComponentCondition item) {
if (this.conditions == null) {
this.conditions =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1ComponentConditionBuilder>();
}
io.kubernetes.client.openapi.models.V1ComponentConditionBuilder builder =
new io.kubernetes.client.openapi.models.V1ComponentConditionBuilder(item);
if (index < 0 || index >= _visitables.get("conditions").size()) {
_visitables.get("conditions").add(builder);
} else {
_visitables.get("conditions").set(index, builder);
}
if (index < 0 || index >= conditions.size()) {
conditions.add(builder);
} else {
conditions.set(index, builder);
}
return (A) this;
}
public A addToConditions(io.kubernetes.client.openapi.models.V1ComponentCondition... items) {
if (this.conditions == null) {
this.conditions =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1ComponentConditionBuilder>();
}
for (io.kubernetes.client.openapi.models.V1ComponentCondition item : items) {
io.kubernetes.client.openapi.models.V1ComponentConditionBuilder builder =
new io.kubernetes.client.openapi.models.V1ComponentConditionBuilder(item);
_visitables.get("conditions").add(builder);
this.conditions.add(builder);
}
return (A) this;
}
public A addAllToConditions(
Collection items) {
if (this.conditions == null) {
this.conditions =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1ComponentConditionBuilder>();
}
for (io.kubernetes.client.openapi.models.V1ComponentCondition item : items) {
io.kubernetes.client.openapi.models.V1ComponentConditionBuilder builder =
new io.kubernetes.client.openapi.models.V1ComponentConditionBuilder(item);
_visitables.get("conditions").add(builder);
this.conditions.add(builder);
}
return (A) this;
}
public A removeFromConditions(io.kubernetes.client.openapi.models.V1ComponentCondition... items) {
for (io.kubernetes.client.openapi.models.V1ComponentCondition item : items) {
io.kubernetes.client.openapi.models.V1ComponentConditionBuilder builder =
new io.kubernetes.client.openapi.models.V1ComponentConditionBuilder(item);
_visitables.get("conditions").remove(builder);
if (this.conditions != null) {
this.conditions.remove(builder);
}
}
return (A) this;
}
public A removeAllFromConditions(
java.util.Collection items) {
for (io.kubernetes.client.openapi.models.V1ComponentCondition item : items) {
io.kubernetes.client.openapi.models.V1ComponentConditionBuilder builder =
new io.kubernetes.client.openapi.models.V1ComponentConditionBuilder(item);
_visitables.get("conditions").remove(builder);
if (this.conditions != null) {
this.conditions.remove(builder);
}
}
return (A) this;
}
public A removeMatchingFromConditions(
Predicate predicate) {
if (conditions == null) return (A) this;
final Iterator each =
conditions.iterator();
final List visitables = _visitables.get("conditions");
while (each.hasNext()) {
io.kubernetes.client.openapi.models.V1ComponentConditionBuilder builder = each.next();
if (predicate.test(builder)) {
visitables.remove(builder);
each.remove();
}
}
return (A) this;
}
/**
* This method has been deprecated, please use method buildConditions instead.
*
* @return The buildable object.
*/
@Deprecated
public List getConditions() {
return conditions != null ? build(conditions) : null;
}
public java.util.List
buildConditions() {
return conditions != null ? build(conditions) : null;
}
public io.kubernetes.client.openapi.models.V1ComponentCondition buildCondition(
java.lang.Integer index) {
return this.conditions.get(index).build();
}
public io.kubernetes.client.openapi.models.V1ComponentCondition buildFirstCondition() {
return this.conditions.get(0).build();
}
public io.kubernetes.client.openapi.models.V1ComponentCondition buildLastCondition() {
return this.conditions.get(conditions.size() - 1).build();
}
public io.kubernetes.client.openapi.models.V1ComponentCondition buildMatchingCondition(
java.util.function.Predicate
predicate) {
for (io.kubernetes.client.openapi.models.V1ComponentConditionBuilder item : conditions) {
if (predicate.test(item)) {
return item.build();
}
}
return null;
}
public java.lang.Boolean hasMatchingCondition(
java.util.function.Predicate
predicate) {
for (io.kubernetes.client.openapi.models.V1ComponentConditionBuilder item : conditions) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withConditions(
java.util.List conditions) {
if (this.conditions != null) {
_visitables.get("conditions").removeAll(this.conditions);
}
if (conditions != null) {
this.conditions = new java.util.ArrayList();
for (io.kubernetes.client.openapi.models.V1ComponentCondition item : conditions) {
this.addToConditions(item);
}
} else {
this.conditions = null;
}
return (A) this;
}
public A withConditions(io.kubernetes.client.openapi.models.V1ComponentCondition... conditions) {
if (this.conditions != null) {
this.conditions.clear();
}
if (conditions != null) {
for (io.kubernetes.client.openapi.models.V1ComponentCondition item : conditions) {
this.addToConditions(item);
}
}
return (A) this;
}
public java.lang.Boolean hasConditions() {
return conditions != null && !conditions.isEmpty();
}
public V1ComponentStatusFluent.ConditionsNested addNewCondition() {
return new V1ComponentStatusFluentImpl.ConditionsNestedImpl();
}
public io.kubernetes.client.openapi.models.V1ComponentStatusFluent.ConditionsNested
addNewConditionLike(io.kubernetes.client.openapi.models.V1ComponentCondition item) {
return new V1ComponentStatusFluentImpl.ConditionsNestedImpl(-1, item);
}
public io.kubernetes.client.openapi.models.V1ComponentStatusFluent.ConditionsNested
setNewConditionLike(
java.lang.Integer index, io.kubernetes.client.openapi.models.V1ComponentCondition item) {
return new io.kubernetes.client.openapi.models.V1ComponentStatusFluentImpl.ConditionsNestedImpl(
index, item);
}
public io.kubernetes.client.openapi.models.V1ComponentStatusFluent.ConditionsNested
editCondition(java.lang.Integer index) {
if (conditions.size() <= index)
throw new RuntimeException("Can't edit conditions. Index exceeds size.");
return setNewConditionLike(index, buildCondition(index));
}
public io.kubernetes.client.openapi.models.V1ComponentStatusFluent.ConditionsNested
editFirstCondition() {
if (conditions.size() == 0)
throw new RuntimeException("Can't edit first conditions. The list is empty.");
return setNewConditionLike(0, buildCondition(0));
}
public io.kubernetes.client.openapi.models.V1ComponentStatusFluent.ConditionsNested
editLastCondition() {
int index = conditions.size() - 1;
if (index < 0) throw new RuntimeException("Can't edit last conditions. The list is empty.");
return setNewConditionLike(index, buildCondition(index));
}
public io.kubernetes.client.openapi.models.V1ComponentStatusFluent.ConditionsNested
editMatchingCondition(
java.util.function.Predicate<
io.kubernetes.client.openapi.models.V1ComponentConditionBuilder>
predicate) {
int index = -1;
for (int i = 0; i < conditions.size(); i++) {
if (predicate.test(conditions.get(i))) {
index = i;
break;
}
}
if (index < 0) throw new RuntimeException("Can't edit matching conditions. No match found.");
return setNewConditionLike(index, buildCondition(index));
}
public java.lang.String getKind() {
return this.kind;
}
public A withKind(java.lang.String kind) {
this.kind = kind;
return (A) this;
}
public java.lang.Boolean hasKind() {
return this.kind != null;
}
/**
* This method has been deprecated, please use method buildMetadata instead.
*
* @return The buildable object.
*/
@java.lang.Deprecated
public io.kubernetes.client.openapi.models.V1ObjectMeta getMetadata() {
return this.metadata != null ? this.metadata.build() : null;
}
public io.kubernetes.client.openapi.models.V1ObjectMeta buildMetadata() {
return this.metadata != null ? this.metadata.build() : null;
}
public A withMetadata(io.kubernetes.client.openapi.models.V1ObjectMeta metadata) {
_visitables.get("metadata").remove(this.metadata);
if (metadata != null) {
this.metadata = new V1ObjectMetaBuilder(metadata);
_visitables.get("metadata").add(this.metadata);
}
return (A) this;
}
public java.lang.Boolean hasMetadata() {
return this.metadata != null;
}
public V1ComponentStatusFluent.MetadataNested withNewMetadata() {
return new V1ComponentStatusFluentImpl.MetadataNestedImpl();
}
public io.kubernetes.client.openapi.models.V1ComponentStatusFluent.MetadataNested
withNewMetadataLike(io.kubernetes.client.openapi.models.V1ObjectMeta item) {
return new io.kubernetes.client.openapi.models.V1ComponentStatusFluentImpl.MetadataNestedImpl(
item);
}
public io.kubernetes.client.openapi.models.V1ComponentStatusFluent.MetadataNested
editMetadata() {
return withNewMetadataLike(getMetadata());
}
public io.kubernetes.client.openapi.models.V1ComponentStatusFluent.MetadataNested
editOrNewMetadata() {
return withNewMetadataLike(
getMetadata() != null
? getMetadata()
: new io.kubernetes.client.openapi.models.V1ObjectMetaBuilder().build());
}
public io.kubernetes.client.openapi.models.V1ComponentStatusFluent.MetadataNested
editOrNewMetadataLike(io.kubernetes.client.openapi.models.V1ObjectMeta item) {
return withNewMetadataLike(getMetadata() != null ? getMetadata() : item);
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
V1ComponentStatusFluentImpl that = (V1ComponentStatusFluentImpl) o;
if (apiVersion != null ? !apiVersion.equals(that.apiVersion) : that.apiVersion != null)
return false;
if (conditions != null ? !conditions.equals(that.conditions) : that.conditions != null)
return false;
if (kind != null ? !kind.equals(that.kind) : that.kind != null) return false;
if (metadata != null ? !metadata.equals(that.metadata) : that.metadata != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(apiVersion, conditions, kind, metadata, super.hashCode());
}
public java.lang.String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (apiVersion != null) {
sb.append("apiVersion:");
sb.append(apiVersion + ",");
}
if (conditions != null && !conditions.isEmpty()) {
sb.append("conditions:");
sb.append(conditions + ",");
}
if (kind != null) {
sb.append("kind:");
sb.append(kind + ",");
}
if (metadata != null) {
sb.append("metadata:");
sb.append(metadata);
}
sb.append("}");
return sb.toString();
}
class ConditionsNestedImpl
extends V1ComponentConditionFluentImpl>
implements io.kubernetes.client.openapi.models.V1ComponentStatusFluent.ConditionsNested,
Nested {
ConditionsNestedImpl(java.lang.Integer index, V1ComponentCondition item) {
this.index = index;
this.builder = new V1ComponentConditionBuilder(this, item);
}
ConditionsNestedImpl() {
this.index = -1;
this.builder = new io.kubernetes.client.openapi.models.V1ComponentConditionBuilder(this);
}
io.kubernetes.client.openapi.models.V1ComponentConditionBuilder builder;
java.lang.Integer index;
public N and() {
return (N) V1ComponentStatusFluentImpl.this.setToConditions(index, builder.build());
}
public N endCondition() {
return and();
}
}
class MetadataNestedImpl
extends V1ObjectMetaFluentImpl>
implements io.kubernetes.client.openapi.models.V1ComponentStatusFluent.MetadataNested,
io.kubernetes.client.fluent.Nested {
MetadataNestedImpl(V1ObjectMeta item) {
this.builder = new V1ObjectMetaBuilder(this, item);
}
MetadataNestedImpl() {
this.builder = new io.kubernetes.client.openapi.models.V1ObjectMetaBuilder(this);
}
io.kubernetes.client.openapi.models.V1ObjectMetaBuilder builder;
public N and() {
return (N) V1ComponentStatusFluentImpl.this.withMetadata(builder.build());
}
public N endMetadata() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy