io.kubernetes.client.openapi.models.V1EndpointSubsetFluent Maven / Gradle / Ivy
package io.kubernetes.client.openapi.models;
import io.kubernetes.client.fluent.VisitableBuilder;
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.Iterator;
import java.util.List;
import java.util.Collection;
import java.lang.Object;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class V1EndpointSubsetFluent> extends BaseFluent{
public V1EndpointSubsetFluent() {
}
public V1EndpointSubsetFluent(V1EndpointSubset instance) {
this.copyInstance(instance);
}
private ArrayList addresses;
private ArrayList notReadyAddresses;
private ArrayList ports;
protected void copyInstance(V1EndpointSubset instance) {
instance = (instance != null ? instance : new V1EndpointSubset());
if (instance != null) {
this.withAddresses(instance.getAddresses());
this.withNotReadyAddresses(instance.getNotReadyAddresses());
this.withPorts(instance.getPorts());
}
}
public A addToAddresses(int index,V1EndpointAddress item) {
if (this.addresses == null) {this.addresses = new ArrayList();}
V1EndpointAddressBuilder builder = new V1EndpointAddressBuilder(item);
if (index < 0 || index >= addresses.size()) { _visitables.get("addresses").add(builder); addresses.add(builder); } else { _visitables.get("addresses").add(index, builder); addresses.add(index, builder);}
return (A)this;
}
public A setToAddresses(int index,V1EndpointAddress item) {
if (this.addresses == null) {this.addresses = new ArrayList();}
V1EndpointAddressBuilder builder = new V1EndpointAddressBuilder(item);
if (index < 0 || index >= addresses.size()) { _visitables.get("addresses").add(builder); addresses.add(builder); } else { _visitables.get("addresses").set(index, builder); addresses.set(index, builder);}
return (A)this;
}
public A addToAddresses(io.kubernetes.client.openapi.models.V1EndpointAddress... items) {
if (this.addresses == null) {this.addresses = new ArrayList();}
for (V1EndpointAddress item : items) {V1EndpointAddressBuilder builder = new V1EndpointAddressBuilder(item);_visitables.get("addresses").add(builder);this.addresses.add(builder);} return (A)this;
}
public A addAllToAddresses(Collection items) {
if (this.addresses == null) {this.addresses = new ArrayList();}
for (V1EndpointAddress item : items) {V1EndpointAddressBuilder builder = new V1EndpointAddressBuilder(item);_visitables.get("addresses").add(builder);this.addresses.add(builder);} return (A)this;
}
public A removeFromAddresses(io.kubernetes.client.openapi.models.V1EndpointAddress... items) {
if (this.addresses == null) return (A)this;
for (V1EndpointAddress item : items) {V1EndpointAddressBuilder builder = new V1EndpointAddressBuilder(item);_visitables.get("addresses").remove(builder); this.addresses.remove(builder);} return (A)this;
}
public A removeAllFromAddresses(Collection items) {
if (this.addresses == null) return (A)this;
for (V1EndpointAddress item : items) {V1EndpointAddressBuilder builder = new V1EndpointAddressBuilder(item);_visitables.get("addresses").remove(builder); this.addresses.remove(builder);} return (A)this;
}
public A removeMatchingFromAddresses(Predicate predicate) {
if (addresses == null) return (A) this;
final Iterator each = addresses.iterator();
final List visitables = _visitables.get("addresses");
while (each.hasNext()) {
V1EndpointAddressBuilder builder = each.next();
if (predicate.test(builder)) {
visitables.remove(builder);
each.remove();
}
}
return (A)this;
}
public List buildAddresses() {
return this.addresses != null ? build(addresses) : null;
}
public V1EndpointAddress buildAddress(int index) {
return this.addresses.get(index).build();
}
public V1EndpointAddress buildFirstAddress() {
return this.addresses.get(0).build();
}
public V1EndpointAddress buildLastAddress() {
return this.addresses.get(addresses.size() - 1).build();
}
public V1EndpointAddress buildMatchingAddress(Predicate predicate) {
for (V1EndpointAddressBuilder item : addresses) {
if (predicate.test(item)) {
return item.build();
}
}
return null;
}
public boolean hasMatchingAddress(Predicate predicate) {
for (V1EndpointAddressBuilder item : addresses) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withAddresses(List addresses) {
if (this.addresses != null) {
this._visitables.get("addresses").clear();
}
if (addresses != null) {
this.addresses = new ArrayList();
for (V1EndpointAddress item : addresses) {
this.addToAddresses(item);
}
} else {
this.addresses = null;
}
return (A) this;
}
public A withAddresses(io.kubernetes.client.openapi.models.V1EndpointAddress... addresses) {
if (this.addresses != null) {
this.addresses.clear();
_visitables.remove("addresses");
}
if (addresses != null) {
for (V1EndpointAddress item : addresses) {
this.addToAddresses(item);
}
}
return (A) this;
}
public boolean hasAddresses() {
return this.addresses != null && !this.addresses.isEmpty();
}
public AddressesNested addNewAddress() {
return new AddressesNested(-1, null);
}
public AddressesNested addNewAddressLike(V1EndpointAddress item) {
return new AddressesNested(-1, item);
}
public AddressesNested setNewAddressLike(int index,V1EndpointAddress item) {
return new AddressesNested(index, item);
}
public AddressesNested editAddress(int index) {
if (addresses.size() <= index) throw new RuntimeException("Can't edit addresses. Index exceeds size.");
return setNewAddressLike(index, buildAddress(index));
}
public AddressesNested editFirstAddress() {
if (addresses.size() == 0) throw new RuntimeException("Can't edit first addresses. The list is empty.");
return setNewAddressLike(0, buildAddress(0));
}
public AddressesNested editLastAddress() {
int index = addresses.size() - 1;
if (index < 0) throw new RuntimeException("Can't edit last addresses. The list is empty.");
return setNewAddressLike(index, buildAddress(index));
}
public AddressesNested editMatchingAddress(Predicate predicate) {
int index = -1;
for (int i=0;i();}
V1EndpointAddressBuilder builder = new V1EndpointAddressBuilder(item);
if (index < 0 || index >= notReadyAddresses.size()) { _visitables.get("notReadyAddresses").add(builder); notReadyAddresses.add(builder); } else { _visitables.get("notReadyAddresses").add(index, builder); notReadyAddresses.add(index, builder);}
return (A)this;
}
public A setToNotReadyAddresses(int index,V1EndpointAddress item) {
if (this.notReadyAddresses == null) {this.notReadyAddresses = new ArrayList();}
V1EndpointAddressBuilder builder = new V1EndpointAddressBuilder(item);
if (index < 0 || index >= notReadyAddresses.size()) { _visitables.get("notReadyAddresses").add(builder); notReadyAddresses.add(builder); } else { _visitables.get("notReadyAddresses").set(index, builder); notReadyAddresses.set(index, builder);}
return (A)this;
}
public A addToNotReadyAddresses(io.kubernetes.client.openapi.models.V1EndpointAddress... items) {
if (this.notReadyAddresses == null) {this.notReadyAddresses = new ArrayList();}
for (V1EndpointAddress item : items) {V1EndpointAddressBuilder builder = new V1EndpointAddressBuilder(item);_visitables.get("notReadyAddresses").add(builder);this.notReadyAddresses.add(builder);} return (A)this;
}
public A addAllToNotReadyAddresses(Collection items) {
if (this.notReadyAddresses == null) {this.notReadyAddresses = new ArrayList();}
for (V1EndpointAddress item : items) {V1EndpointAddressBuilder builder = new V1EndpointAddressBuilder(item);_visitables.get("notReadyAddresses").add(builder);this.notReadyAddresses.add(builder);} return (A)this;
}
public A removeFromNotReadyAddresses(io.kubernetes.client.openapi.models.V1EndpointAddress... items) {
if (this.notReadyAddresses == null) return (A)this;
for (V1EndpointAddress item : items) {V1EndpointAddressBuilder builder = new V1EndpointAddressBuilder(item);_visitables.get("notReadyAddresses").remove(builder); this.notReadyAddresses.remove(builder);} return (A)this;
}
public A removeAllFromNotReadyAddresses(Collection items) {
if (this.notReadyAddresses == null) return (A)this;
for (V1EndpointAddress item : items) {V1EndpointAddressBuilder builder = new V1EndpointAddressBuilder(item);_visitables.get("notReadyAddresses").remove(builder); this.notReadyAddresses.remove(builder);} return (A)this;
}
public A removeMatchingFromNotReadyAddresses(Predicate predicate) {
if (notReadyAddresses == null) return (A) this;
final Iterator each = notReadyAddresses.iterator();
final List visitables = _visitables.get("notReadyAddresses");
while (each.hasNext()) {
V1EndpointAddressBuilder builder = each.next();
if (predicate.test(builder)) {
visitables.remove(builder);
each.remove();
}
}
return (A)this;
}
public List buildNotReadyAddresses() {
return this.notReadyAddresses != null ? build(notReadyAddresses) : null;
}
public V1EndpointAddress buildNotReadyAddress(int index) {
return this.notReadyAddresses.get(index).build();
}
public V1EndpointAddress buildFirstNotReadyAddress() {
return this.notReadyAddresses.get(0).build();
}
public V1EndpointAddress buildLastNotReadyAddress() {
return this.notReadyAddresses.get(notReadyAddresses.size() - 1).build();
}
public V1EndpointAddress buildMatchingNotReadyAddress(Predicate predicate) {
for (V1EndpointAddressBuilder item : notReadyAddresses) {
if (predicate.test(item)) {
return item.build();
}
}
return null;
}
public boolean hasMatchingNotReadyAddress(Predicate predicate) {
for (V1EndpointAddressBuilder item : notReadyAddresses) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withNotReadyAddresses(List notReadyAddresses) {
if (this.notReadyAddresses != null) {
this._visitables.get("notReadyAddresses").clear();
}
if (notReadyAddresses != null) {
this.notReadyAddresses = new ArrayList();
for (V1EndpointAddress item : notReadyAddresses) {
this.addToNotReadyAddresses(item);
}
} else {
this.notReadyAddresses = null;
}
return (A) this;
}
public A withNotReadyAddresses(io.kubernetes.client.openapi.models.V1EndpointAddress... notReadyAddresses) {
if (this.notReadyAddresses != null) {
this.notReadyAddresses.clear();
_visitables.remove("notReadyAddresses");
}
if (notReadyAddresses != null) {
for (V1EndpointAddress item : notReadyAddresses) {
this.addToNotReadyAddresses(item);
}
}
return (A) this;
}
public boolean hasNotReadyAddresses() {
return this.notReadyAddresses != null && !this.notReadyAddresses.isEmpty();
}
public NotReadyAddressesNested addNewNotReadyAddress() {
return new NotReadyAddressesNested(-1, null);
}
public NotReadyAddressesNested addNewNotReadyAddressLike(V1EndpointAddress item) {
return new NotReadyAddressesNested(-1, item);
}
public NotReadyAddressesNested setNewNotReadyAddressLike(int index,V1EndpointAddress item) {
return new NotReadyAddressesNested(index, item);
}
public NotReadyAddressesNested editNotReadyAddress(int index) {
if (notReadyAddresses.size() <= index) throw new RuntimeException("Can't edit notReadyAddresses. Index exceeds size.");
return setNewNotReadyAddressLike(index, buildNotReadyAddress(index));
}
public NotReadyAddressesNested editFirstNotReadyAddress() {
if (notReadyAddresses.size() == 0) throw new RuntimeException("Can't edit first notReadyAddresses. The list is empty.");
return setNewNotReadyAddressLike(0, buildNotReadyAddress(0));
}
public NotReadyAddressesNested editLastNotReadyAddress() {
int index = notReadyAddresses.size() - 1;
if (index < 0) throw new RuntimeException("Can't edit last notReadyAddresses. The list is empty.");
return setNewNotReadyAddressLike(index, buildNotReadyAddress(index));
}
public NotReadyAddressesNested editMatchingNotReadyAddress(Predicate predicate) {
int index = -1;
for (int i=0;i();}
CoreV1EndpointPortBuilder builder = new CoreV1EndpointPortBuilder(item);
if (index < 0 || index >= ports.size()) { _visitables.get("ports").add(builder); ports.add(builder); } else { _visitables.get("ports").add(index, builder); ports.add(index, builder);}
return (A)this;
}
public A setToPorts(int index,CoreV1EndpointPort item) {
if (this.ports == null) {this.ports = new ArrayList();}
CoreV1EndpointPortBuilder builder = new CoreV1EndpointPortBuilder(item);
if (index < 0 || index >= ports.size()) { _visitables.get("ports").add(builder); ports.add(builder); } else { _visitables.get("ports").set(index, builder); ports.set(index, builder);}
return (A)this;
}
public A addToPorts(io.kubernetes.client.openapi.models.CoreV1EndpointPort... items) {
if (this.ports == null) {this.ports = new ArrayList();}
for (CoreV1EndpointPort item : items) {CoreV1EndpointPortBuilder builder = new CoreV1EndpointPortBuilder(item);_visitables.get("ports").add(builder);this.ports.add(builder);} return (A)this;
}
public A addAllToPorts(Collection items) {
if (this.ports == null) {this.ports = new ArrayList();}
for (CoreV1EndpointPort item : items) {CoreV1EndpointPortBuilder builder = new CoreV1EndpointPortBuilder(item);_visitables.get("ports").add(builder);this.ports.add(builder);} return (A)this;
}
public A removeFromPorts(io.kubernetes.client.openapi.models.CoreV1EndpointPort... items) {
if (this.ports == null) return (A)this;
for (CoreV1EndpointPort item : items) {CoreV1EndpointPortBuilder builder = new CoreV1EndpointPortBuilder(item);_visitables.get("ports").remove(builder); this.ports.remove(builder);} return (A)this;
}
public A removeAllFromPorts(Collection items) {
if (this.ports == null) return (A)this;
for (CoreV1EndpointPort item : items) {CoreV1EndpointPortBuilder builder = new CoreV1EndpointPortBuilder(item);_visitables.get("ports").remove(builder); this.ports.remove(builder);} return (A)this;
}
public A removeMatchingFromPorts(Predicate predicate) {
if (ports == null) return (A) this;
final Iterator each = ports.iterator();
final List visitables = _visitables.get("ports");
while (each.hasNext()) {
CoreV1EndpointPortBuilder builder = each.next();
if (predicate.test(builder)) {
visitables.remove(builder);
each.remove();
}
}
return (A)this;
}
public List buildPorts() {
return this.ports != null ? build(ports) : null;
}
public CoreV1EndpointPort buildPort(int index) {
return this.ports.get(index).build();
}
public CoreV1EndpointPort buildFirstPort() {
return this.ports.get(0).build();
}
public CoreV1EndpointPort buildLastPort() {
return this.ports.get(ports.size() - 1).build();
}
public CoreV1EndpointPort buildMatchingPort(Predicate predicate) {
for (CoreV1EndpointPortBuilder item : ports) {
if (predicate.test(item)) {
return item.build();
}
}
return null;
}
public boolean hasMatchingPort(Predicate predicate) {
for (CoreV1EndpointPortBuilder item : ports) {
if (predicate.test(item)) {
return true;
}
}
return false;
}
public A withPorts(List ports) {
if (this.ports != null) {
this._visitables.get("ports").clear();
}
if (ports != null) {
this.ports = new ArrayList();
for (CoreV1EndpointPort item : ports) {
this.addToPorts(item);
}
} else {
this.ports = null;
}
return (A) this;
}
public A withPorts(io.kubernetes.client.openapi.models.CoreV1EndpointPort... ports) {
if (this.ports != null) {
this.ports.clear();
_visitables.remove("ports");
}
if (ports != null) {
for (CoreV1EndpointPort item : ports) {
this.addToPorts(item);
}
}
return (A) this;
}
public boolean hasPorts() {
return this.ports != null && !this.ports.isEmpty();
}
public PortsNested addNewPort() {
return new PortsNested(-1, null);
}
public PortsNested addNewPortLike(CoreV1EndpointPort item) {
return new PortsNested(-1, item);
}
public PortsNested setNewPortLike(int index,CoreV1EndpointPort item) {
return new PortsNested(index, item);
}
public PortsNested editPort(int index) {
if (ports.size() <= index) throw new RuntimeException("Can't edit ports. Index exceeds size.");
return setNewPortLike(index, buildPort(index));
}
public PortsNested editFirstPort() {
if (ports.size() == 0) throw new RuntimeException("Can't edit first ports. The list is empty.");
return setNewPortLike(0, buildPort(0));
}
public PortsNested editLastPort() {
int index = ports.size() - 1;
if (index < 0) throw new RuntimeException("Can't edit last ports. The list is empty.");
return setNewPortLike(index, buildPort(index));
}
public PortsNested editMatchingPort(Predicate predicate) {
int index = -1;
for (int i=0;i extends V1EndpointAddressFluent> implements Nested{
AddressesNested(int index,V1EndpointAddress item) {
this.index = index;
this.builder = new V1EndpointAddressBuilder(this, item);
}
V1EndpointAddressBuilder builder;
int index;
public N and() {
return (N) V1EndpointSubsetFluent.this.setToAddresses(index,builder.build());
}
public N endAddress() {
return and();
}
}
public class NotReadyAddressesNested extends V1EndpointAddressFluent> implements Nested{
NotReadyAddressesNested(int index,V1EndpointAddress item) {
this.index = index;
this.builder = new V1EndpointAddressBuilder(this, item);
}
V1EndpointAddressBuilder builder;
int index;
public N and() {
return (N) V1EndpointSubsetFluent.this.setToNotReadyAddresses(index,builder.build());
}
public N endNotReadyAddress() {
return and();
}
}
public class PortsNested extends CoreV1EndpointPortFluent> implements Nested{
PortsNested(int index,CoreV1EndpointPort item) {
this.index = index;
this.builder = new CoreV1EndpointPortBuilder(this, item);
}
CoreV1EndpointPortBuilder builder;
int index;
public N and() {
return (N) V1EndpointSubsetFluent.this.setToPorts(index,builder.build());
}
public N endPort() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy