io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluentImpl 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 V1alpha1StorageVersionListFluentImpl>
extends BaseFluent implements V1alpha1StorageVersionListFluent {
public V1alpha1StorageVersionListFluentImpl() {}
public V1alpha1StorageVersionListFluentImpl(
io.kubernetes.client.openapi.models.V1alpha1StorageVersionList instance) {
this.withApiVersion(instance.getApiVersion());
this.withItems(instance.getItems());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
}
private String apiVersion;
private ArrayList items;
private java.lang.String kind;
private V1ListMetaBuilder 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 addToItems(
Integer index, io.kubernetes.client.openapi.models.V1alpha1StorageVersion item) {
if (this.items == null) {
this.items =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder>();
}
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder builder =
new io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder(item);
_visitables.get("items").add(index >= 0 ? index : _visitables.get("items").size(), builder);
this.items.add(index >= 0 ? index : items.size(), builder);
return (A) this;
}
public A setToItems(
java.lang.Integer index, io.kubernetes.client.openapi.models.V1alpha1StorageVersion item) {
if (this.items == null) {
this.items =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder>();
}
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder builder =
new io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder(item);
if (index < 0 || index >= _visitables.get("items").size()) {
_visitables.get("items").add(builder);
} else {
_visitables.get("items").set(index, builder);
}
if (index < 0 || index >= items.size()) {
items.add(builder);
} else {
items.set(index, builder);
}
return (A) this;
}
public A addToItems(io.kubernetes.client.openapi.models.V1alpha1StorageVersion... items) {
if (this.items == null) {
this.items =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder>();
}
for (io.kubernetes.client.openapi.models.V1alpha1StorageVersion item : items) {
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder builder =
new io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder(item);
_visitables.get("items").add(builder);
this.items.add(builder);
}
return (A) this;
}
public A addAllToItems(
Collection items) {
if (this.items == null) {
this.items =
new java.util.ArrayList<
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder>();
}
for (io.kubernetes.client.openapi.models.V1alpha1StorageVersion item : items) {
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder builder =
new io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder(item);
_visitables.get("items").add(builder);
this.items.add(builder);
}
return (A) this;
}
public A removeFromItems(io.kubernetes.client.openapi.models.V1alpha1StorageVersion... items) {
for (io.kubernetes.client.openapi.models.V1alpha1StorageVersion item : items) {
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder builder =
new io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder(item);
_visitables.get("items").remove(builder);
if (this.items != null) {
this.items.remove(builder);
}
}
return (A) this;
}
public A removeAllFromItems(
java.util.Collection items) {
for (io.kubernetes.client.openapi.models.V1alpha1StorageVersion item : items) {
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder builder =
new io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder(item);
_visitables.get("items").remove(builder);
if (this.items != null) {
this.items.remove(builder);
}
}
return (A) this;
}
public A removeMatchingFromItems(
Predicate predicate) {
if (items == null) return (A) this;
final Iterator each =
items.iterator();
final List visitables = _visitables.get("items");
while (each.hasNext()) {
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder builder = each.next();
if (predicate.test(builder)) {
visitables.remove(builder);
each.remove();
}
}
return (A) this;
}
/**
* This method has been deprecated, please use method buildItems instead.
*
* @return The buildable object.
*/
@Deprecated
public List getItems() {
return items != null ? build(items) : null;
}
public java.util.List buildItems() {
return items != null ? build(items) : null;
}
public io.kubernetes.client.openapi.models.V1alpha1StorageVersion buildItem(
java.lang.Integer index) {
return this.items.get(index).build();
}
public io.kubernetes.client.openapi.models.V1alpha1StorageVersion buildFirstItem() {
return this.items.get(0).build();
}
public io.kubernetes.client.openapi.models.V1alpha1StorageVersion buildLastItem() {
return this.items.get(items.size() - 1).build();
}
public io.kubernetes.client.openapi.models.V1alpha1StorageVersion buildMatchingItem(
java.util.function.Predicate<
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder>
predicate) {
for (io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder item : items) {
if (predicate.test(item)) {
return item.build();
}
}
return null;
}
public java.lang.Boolean hasMatchingItem(
java.util.function.Predicate<
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder>
predicate) {
for (io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder item : items) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withItems(
java.util.List items) {
if (this.items != null) {
_visitables.get("items").removeAll(this.items);
}
if (items != null) {
this.items = new java.util.ArrayList();
for (io.kubernetes.client.openapi.models.V1alpha1StorageVersion item : items) {
this.addToItems(item);
}
} else {
this.items = null;
}
return (A) this;
}
public A withItems(io.kubernetes.client.openapi.models.V1alpha1StorageVersion... items) {
if (this.items != null) {
this.items.clear();
}
if (items != null) {
for (io.kubernetes.client.openapi.models.V1alpha1StorageVersion item : items) {
this.addToItems(item);
}
}
return (A) this;
}
public java.lang.Boolean hasItems() {
return items != null && !items.isEmpty();
}
public V1alpha1StorageVersionListFluent.ItemsNested addNewItem() {
return new V1alpha1StorageVersionListFluentImpl.ItemsNestedImpl();
}
public V1alpha1StorageVersionListFluent.ItemsNested addNewItemLike(
io.kubernetes.client.openapi.models.V1alpha1StorageVersion item) {
return new V1alpha1StorageVersionListFluentImpl.ItemsNestedImpl(-1, item);
}
public io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluent.ItemsNested
setNewItemLike(
java.lang.Integer index,
io.kubernetes.client.openapi.models.V1alpha1StorageVersion item) {
return new io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluentImpl
.ItemsNestedImpl(index, item);
}
public io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluent.ItemsNested
editItem(java.lang.Integer index) {
if (items.size() <= index) throw new RuntimeException("Can't edit items. Index exceeds size.");
return setNewItemLike(index, buildItem(index));
}
public io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluent.ItemsNested
editFirstItem() {
if (items.size() == 0) throw new RuntimeException("Can't edit first items. The list is empty.");
return setNewItemLike(0, buildItem(0));
}
public io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluent.ItemsNested
editLastItem() {
int index = items.size() - 1;
if (index < 0) throw new RuntimeException("Can't edit last items. The list is empty.");
return setNewItemLike(index, buildItem(index));
}
public io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluent.ItemsNested
editMatchingItem(
java.util.function.Predicate<
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder>
predicate) {
int index = -1;
for (int i = 0; i < items.size(); i++) {
if (predicate.test(items.get(i))) {
index = i;
break;
}
}
if (index < 0) throw new RuntimeException("Can't edit matching items. No match found.");
return setNewItemLike(index, buildItem(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.V1ListMeta getMetadata() {
return this.metadata != null ? this.metadata.build() : null;
}
public io.kubernetes.client.openapi.models.V1ListMeta buildMetadata() {
return this.metadata != null ? this.metadata.build() : null;
}
public A withMetadata(io.kubernetes.client.openapi.models.V1ListMeta metadata) {
_visitables.get("metadata").remove(this.metadata);
if (metadata != null) {
this.metadata = new V1ListMetaBuilder(metadata);
_visitables.get("metadata").add(this.metadata);
}
return (A) this;
}
public java.lang.Boolean hasMetadata() {
return this.metadata != null;
}
public V1alpha1StorageVersionListFluent.MetadataNested withNewMetadata() {
return new V1alpha1StorageVersionListFluentImpl.MetadataNestedImpl();
}
public io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluent.MetadataNested
withNewMetadataLike(io.kubernetes.client.openapi.models.V1ListMeta item) {
return new io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluentImpl
.MetadataNestedImpl(item);
}
public io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluent.MetadataNested
editMetadata() {
return withNewMetadataLike(getMetadata());
}
public io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluent.MetadataNested
editOrNewMetadata() {
return withNewMetadataLike(
getMetadata() != null
? getMetadata()
: new io.kubernetes.client.openapi.models.V1ListMetaBuilder().build());
}
public io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluent.MetadataNested
editOrNewMetadataLike(io.kubernetes.client.openapi.models.V1ListMeta 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;
V1alpha1StorageVersionListFluentImpl that = (V1alpha1StorageVersionListFluentImpl) o;
if (apiVersion != null ? !apiVersion.equals(that.apiVersion) : that.apiVersion != null)
return false;
if (items != null ? !items.equals(that.items) : that.items != 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, items, 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 (items != null && !items.isEmpty()) {
sb.append("items:");
sb.append(items + ",");
}
if (kind != null) {
sb.append("kind:");
sb.append(kind + ",");
}
if (metadata != null) {
sb.append("metadata:");
sb.append(metadata);
}
sb.append("}");
return sb.toString();
}
class ItemsNestedImpl
extends V1alpha1StorageVersionFluentImpl>
implements io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluent.ItemsNested<
N>,
Nested {
ItemsNestedImpl(
java.lang.Integer index, io.kubernetes.client.openapi.models.V1alpha1StorageVersion item) {
this.index = index;
this.builder = new V1alpha1StorageVersionBuilder(this, item);
}
ItemsNestedImpl() {
this.index = -1;
this.builder = new io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder(this);
}
io.kubernetes.client.openapi.models.V1alpha1StorageVersionBuilder builder;
java.lang.Integer index;
public N and() {
return (N) V1alpha1StorageVersionListFluentImpl.this.setToItems(index, builder.build());
}
public N endItem() {
return and();
}
}
class MetadataNestedImpl
extends V1ListMetaFluentImpl>
implements io.kubernetes.client.openapi.models.V1alpha1StorageVersionListFluent
.MetadataNested<
N>,
io.kubernetes.client.fluent.Nested {
MetadataNestedImpl(V1ListMeta item) {
this.builder = new V1ListMetaBuilder(this, item);
}
MetadataNestedImpl() {
this.builder = new io.kubernetes.client.openapi.models.V1ListMetaBuilder(this);
}
io.kubernetes.client.openapi.models.V1ListMetaBuilder builder;
public N and() {
return (N) V1alpha1StorageVersionListFluentImpl.this.withMetadata(builder.build());
}
public N endMetadata() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy