org.cloudfoundry.routing.v1.tcproutes.EventsRequest Maven / Gradle / Ivy
package org.cloudfoundry.routing.v1.tcproutes;
import java.util.Objects;
import org.immutables.value.Generated;
/**
* The request payload for the TCP Routes Events operation
*/
@Generated(from = "_EventsRequest", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class EventsRequest extends org.cloudfoundry.routing.v1.tcproutes._EventsRequest {
private EventsRequest(EventsRequest.Builder builder) {
}
/**
* This instance is equal to all instances of {@code EventsRequest} that have equal attribute values.
* @return {@code true} if {@code this} is equal to {@code another} instance
*/
@Override
public boolean equals(Object another) {
if (this == another) return true;
return another instanceof EventsRequest
&& equalTo(0, (EventsRequest) another);
}
@SuppressWarnings("MethodCanBeStatic")
private boolean equalTo(int synthetic, EventsRequest another) {
return true;
}
/**
* Returns a constant hash code value.
* @return hashCode value
*/
@Override
public int hashCode() {
return 1470488660;
}
/**
* Prints the immutable value {@code EventsRequest}.
* @return A string representation of the value
*/
@Override
public String toString() {
return "EventsRequest{}";
}
/**
* Creates a builder for {@link EventsRequest EventsRequest}.
*
* EventsRequest.builder()
* .build();
*
* @return A new EventsRequest builder
*/
public static EventsRequest.Builder builder() {
return new EventsRequest.Builder();
}
/**
* Builds instances of type {@link EventsRequest EventsRequest}.
* Initialize attributes and then invoke the {@link #build()} method to create an
* immutable instance.
* {@code Builder} is not thread-safe and generally should not be stored in a field or collection,
* but instead used immediately to create instances.
*/
@Generated(from = "_EventsRequest", generator = "Immutables")
public static final class Builder {
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code EventsRequest} instance.
* Regular attribute values will be replaced with those from the given instance.
* Absent optional values will not replace present values.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
public final Builder from(EventsRequest instance) {
return from((_EventsRequest) instance);
}
/**
* Copy abstract value type {@code _EventsRequest} instance into builder.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
final Builder from(_EventsRequest instance) {
Objects.requireNonNull(instance, "instance");
return this;
}
/**
* Builds a new {@link EventsRequest EventsRequest}.
* @return An immutable instance of EventsRequest
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public EventsRequest build() {
return new EventsRequest(this);
}
}
}