io.kubernetes.client.openapi.models.V1EndpointAddressFluentImpl 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;
/** Generated */
@SuppressWarnings(value = "unchecked")
public class V1EndpointAddressFluentImpl> extends BaseFluent
implements V1EndpointAddressFluent {
public V1EndpointAddressFluentImpl() {}
public V1EndpointAddressFluentImpl(
io.kubernetes.client.openapi.models.V1EndpointAddress instance) {
this.withHostname(instance.getHostname());
this.withIp(instance.getIp());
this.withNodeName(instance.getNodeName());
this.withTargetRef(instance.getTargetRef());
}
private String hostname;
private java.lang.String ip;
private java.lang.String nodeName;
private V1ObjectReferenceBuilder targetRef;
public java.lang.String getHostname() {
return this.hostname;
}
public A withHostname(java.lang.String hostname) {
this.hostname = hostname;
return (A) this;
}
public Boolean hasHostname() {
return this.hostname != null;
}
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 java.lang.String getNodeName() {
return this.nodeName;
}
public A withNodeName(java.lang.String nodeName) {
this.nodeName = nodeName;
return (A) this;
}
public java.lang.Boolean hasNodeName() {
return this.nodeName != null;
}
/**
* This method has been deprecated, please use method buildTargetRef instead.
*
* @return The buildable object.
*/
@Deprecated
public io.kubernetes.client.openapi.models.V1ObjectReference getTargetRef() {
return this.targetRef != null ? this.targetRef.build() : null;
}
public io.kubernetes.client.openapi.models.V1ObjectReference buildTargetRef() {
return this.targetRef != null ? this.targetRef.build() : null;
}
public A withTargetRef(io.kubernetes.client.openapi.models.V1ObjectReference targetRef) {
_visitables.get("targetRef").remove(this.targetRef);
if (targetRef != null) {
this.targetRef = new V1ObjectReferenceBuilder(targetRef);
_visitables.get("targetRef").add(this.targetRef);
}
return (A) this;
}
public java.lang.Boolean hasTargetRef() {
return this.targetRef != null;
}
public V1EndpointAddressFluent.TargetRefNested withNewTargetRef() {
return new V1EndpointAddressFluentImpl.TargetRefNestedImpl();
}
public io.kubernetes.client.openapi.models.V1EndpointAddressFluent.TargetRefNested
withNewTargetRefLike(io.kubernetes.client.openapi.models.V1ObjectReference item) {
return new V1EndpointAddressFluentImpl.TargetRefNestedImpl(item);
}
public io.kubernetes.client.openapi.models.V1EndpointAddressFluent.TargetRefNested
editTargetRef() {
return withNewTargetRefLike(getTargetRef());
}
public io.kubernetes.client.openapi.models.V1EndpointAddressFluent.TargetRefNested
editOrNewTargetRef() {
return withNewTargetRefLike(
getTargetRef() != null
? getTargetRef()
: new io.kubernetes.client.openapi.models.V1ObjectReferenceBuilder().build());
}
public io.kubernetes.client.openapi.models.V1EndpointAddressFluent.TargetRefNested
editOrNewTargetRefLike(io.kubernetes.client.openapi.models.V1ObjectReference item) {
return withNewTargetRefLike(getTargetRef() != null ? getTargetRef() : item);
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
V1EndpointAddressFluentImpl that = (V1EndpointAddressFluentImpl) o;
if (hostname != null ? !hostname.equals(that.hostname) : that.hostname != null) return false;
if (ip != null ? !ip.equals(that.ip) : that.ip != null) return false;
if (nodeName != null ? !nodeName.equals(that.nodeName) : that.nodeName != null) return false;
if (targetRef != null ? !targetRef.equals(that.targetRef) : that.targetRef != null)
return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(hostname, ip, nodeName, targetRef, super.hashCode());
}
public java.lang.String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (hostname != null) {
sb.append("hostname:");
sb.append(hostname + ",");
}
if (ip != null) {
sb.append("ip:");
sb.append(ip + ",");
}
if (nodeName != null) {
sb.append("nodeName:");
sb.append(nodeName + ",");
}
if (targetRef != null) {
sb.append("targetRef:");
sb.append(targetRef);
}
sb.append("}");
return sb.toString();
}
class TargetRefNestedImpl
extends V1ObjectReferenceFluentImpl>
implements io.kubernetes.client.openapi.models.V1EndpointAddressFluent.TargetRefNested,
Nested {
TargetRefNestedImpl(io.kubernetes.client.openapi.models.V1ObjectReference item) {
this.builder = new V1ObjectReferenceBuilder(this, item);
}
TargetRefNestedImpl() {
this.builder = new io.kubernetes.client.openapi.models.V1ObjectReferenceBuilder(this);
}
io.kubernetes.client.openapi.models.V1ObjectReferenceBuilder builder;
public N and() {
return (N) V1EndpointAddressFluentImpl.this.withTargetRef(builder.build());
}
public N endTargetRef() {
return and();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy