All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kubernetes.client.openapi.models.V1HostAliasFluentImpl Maven / Gradle / Ivy

package io.kubernetes.client.openapi.models;

import java.lang.SuppressWarnings;
import io.kubernetes.client.fluent.BaseFluent;
import java.util.ArrayList;
import java.util.Collection;
import java.lang.Object;
import java.util.List;
import java.lang.String;
import java.lang.Boolean;
import java.util.function.Predicate;

 /**
  * Generated
  */
  @SuppressWarnings(value = "unchecked")
  public class V1HostAliasFluentImpl> extends BaseFluent implements V1HostAliasFluent{
  public V1HostAliasFluentImpl() {
  }
  public V1HostAliasFluentImpl(V1HostAlias instance) {
    if (instance != null) {
      this.withHostnames(instance.getHostnames());
      this.withIp(instance.getIp());
    }
  }
  private List hostnames;
  private String ip;
  public A addToHostnames(int index,String item) {
    if (this.hostnames == null) {this.hostnames = new ArrayList();}
    this.hostnames.add(index, item);
    return (A)this;
  }
  public A setToHostnames(int index,String item) {
    if (this.hostnames == null) {this.hostnames = new ArrayList();}
    this.hostnames.set(index, item); return (A)this;
  }
  public A addToHostnames(java.lang.String... items) {
    if (this.hostnames == null) {this.hostnames = new ArrayList();}
    for (String item : items) {this.hostnames.add(item);} return (A)this;
  }
  public A addAllToHostnames(Collection items) {
    if (this.hostnames == null) {this.hostnames = new ArrayList();}
    for (String item : items) {this.hostnames.add(item);} return (A)this;
  }
  public A removeFromHostnames(java.lang.String... items) {
    for (String item : items) {if (this.hostnames!= null){ this.hostnames.remove(item);}} return (A)this;
  }
  public A removeAllFromHostnames(Collection items) {
    for (String item : items) {if (this.hostnames!= null){ this.hostnames.remove(item);}} return (A)this;
  }
  public List getHostnames() {
    return this.hostnames;
  }
  public String getHostname(int index) {
    return this.hostnames.get(index);
  }
  public String getFirstHostname() {
    return this.hostnames.get(0);
  }
  public String getLastHostname() {
    return this.hostnames.get(hostnames.size() - 1);
  }
  public String getMatchingHostname(Predicate predicate) {
    for (String item: hostnames) { if(predicate.test(item)){ return item;} } return null;
  }
  public Boolean hasMatchingHostname(Predicate predicate) {
    for (String item: hostnames) { if(predicate.test(item)){ return true;} } return false;
  }
  public A withHostnames(List hostnames) {
    if (hostnames != null) {this.hostnames = new ArrayList(); for (String item : hostnames){this.addToHostnames(item);}} else { this.hostnames = null;} return (A) this;
  }
  public A withHostnames(java.lang.String... hostnames) {
    if (this.hostnames != null) {this.hostnames.clear(); _visitables.remove("hostnames"); }
    if (hostnames != null) {for (String item :hostnames){ this.addToHostnames(item);}} return (A) this;
  }
  public Boolean hasHostnames() {
    return hostnames != null && !hostnames.isEmpty();
  }
  public String getIp() {
    return this.ip;
  }
  public A withIp(String ip) {
    this.ip=ip; return (A) this;
  }
  public Boolean hasIp() {
    return this.ip != 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;
    V1HostAliasFluentImpl that = (V1HostAliasFluentImpl) o;
    if (!java.util.Objects.equals(hostnames, that.hostnames)) return false;

    if (!java.util.Objects.equals(ip, that.ip)) return false;

    return true;
  }
  public int hashCode() {
    return java.util.Objects.hash(hostnames,  ip,  super.hashCode());
  }
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    if (hostnames != null && !hostnames.isEmpty()) { sb.append("hostnames:"); sb.append(hostnames + ","); }
    if (ip != null) { sb.append("ip:"); sb.append(ip); }
    sb.append("}");
    return sb.toString();
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy