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

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

There is a newer version: 22.0.0
Show newest version
/*
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 java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.function.Predicate;

/** Generated */
@SuppressWarnings(value = "unchecked")
public class V1HostAliasFluentImpl> extends BaseFluent
    implements V1HostAliasFluent {
  public V1HostAliasFluentImpl() {}

  public V1HostAliasFluentImpl(io.kubernetes.client.openapi.models.V1HostAlias instance) {
    this.withHostnames(instance.getHostnames());

    this.withIp(instance.getIp());
  }

  private List hostnames;
  private java.lang.String ip;

  public A addToHostnames(Integer index, java.lang.String item) {
    if (this.hostnames == null) {
      this.hostnames = new ArrayList();
    }
    this.hostnames.add(index, item);
    return (A) this;
  }

  public A setToHostnames(java.lang.Integer index, java.lang.String item) {
    if (this.hostnames == null) {
      this.hostnames = new java.util.ArrayList();
    }
    this.hostnames.set(index, item);
    return (A) this;
  }

  public A addToHostnames(java.lang.String... items) {
    if (this.hostnames == null) {
      this.hostnames = new java.util.ArrayList();
    }
    for (java.lang.String item : items) {
      this.hostnames.add(item);
    }
    return (A) this;
  }

  public A addAllToHostnames(Collection items) {
    if (this.hostnames == null) {
      this.hostnames = new java.util.ArrayList();
    }
    for (java.lang.String item : items) {
      this.hostnames.add(item);
    }
    return (A) this;
  }

  public A removeFromHostnames(java.lang.String... items) {
    for (java.lang.String item : items) {
      if (this.hostnames != null) {
        this.hostnames.remove(item);
      }
    }
    return (A) this;
  }

  public A removeAllFromHostnames(java.util.Collection items) {
    for (java.lang.String item : items) {
      if (this.hostnames != null) {
        this.hostnames.remove(item);
      }
    }
    return (A) this;
  }

  public java.util.List getHostnames() {
    return this.hostnames;
  }

  public java.lang.String getHostname(java.lang.Integer index) {
    return this.hostnames.get(index);
  }

  public java.lang.String getFirstHostname() {
    return this.hostnames.get(0);
  }

  public java.lang.String getLastHostname() {
    return this.hostnames.get(hostnames.size() - 1);
  }

  public java.lang.String getMatchingHostname(Predicate predicate) {
    for (java.lang.String item : hostnames) {
      if (predicate.test(item)) {
        return item;
      }
    }
    return null;
  }

  public Boolean hasMatchingHostname(java.util.function.Predicate predicate) {
    for (java.lang.String item : hostnames) {
      if (predicate.test(item)) {
        return true;
      }
    }
    return false;
  }

  public A withHostnames(java.util.List hostnames) {
    if (hostnames != null) {
      this.hostnames = new java.util.ArrayList();
      for (java.lang.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();
    }
    if (hostnames != null) {
      for (java.lang.String item : hostnames) {
        this.addToHostnames(item);
      }
    }
    return (A) this;
  }

  public java.lang.Boolean hasHostnames() {
    return hostnames != null && !hostnames.isEmpty();
  }

  public java.lang.String getIp() {
    return this.ip;
  }

  public A withIp(java.lang.String ip) {
    this.ip = ip;
    return (A) this;
  }

  public java.lang.Boolean hasIp() {
    return this.ip != null;
  }

  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    V1HostAliasFluentImpl that = (V1HostAliasFluentImpl) o;
    if (hostnames != null ? !hostnames.equals(that.hostnames) : that.hostnames != null)
      return false;
    if (ip != null ? !ip.equals(that.ip) : that.ip != null) return false;
    return true;
  }

  public int hashCode() {
    return java.util.Objects.hash(hostnames, ip, super.hashCode());
  }

  public java.lang.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