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

org.cloudfoundry.uaa.clients.ListMetadatasRequest Maven / Gradle / Ivy

There is a newer version: 5.12.2.RELEASE
Show newest version
package org.cloudfoundry.uaa.clients;

import java.util.Objects;
import org.immutables.value.Generated;

/**
 * The request payload for the list clients operation
 */
@Generated(from = "_ListMetadatasRequest", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class ListMetadatasRequest extends org.cloudfoundry.uaa.clients._ListMetadatasRequest {

  private ListMetadatasRequest(ListMetadatasRequest.Builder builder) {
  }

  /**
   * This instance is equal to all instances of {@code ListMetadatasRequest} 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 ListMetadatasRequest
        && equalTo(0, (ListMetadatasRequest) another);
  }

  @SuppressWarnings("MethodCanBeStatic")
  private boolean equalTo(int synthetic, ListMetadatasRequest another) {
    return true;
  }

  /**
   * Returns a constant hash code value.
   * @return hashCode value
   */
  @Override
  public int hashCode() {
    return 1435827384;
  }

  /**
   * Prints the immutable value {@code ListMetadatasRequest}.
   * @return A string representation of the value
   */
  @Override
  public String toString() {
    return "ListMetadatasRequest{}";
  }

  /**
   * Creates a builder for {@link ListMetadatasRequest ListMetadatasRequest}.
   * 
   * ListMetadatasRequest.builder()
   *    .build();
   * 
* @return A new ListMetadatasRequest builder */ public static ListMetadatasRequest.Builder builder() { return new ListMetadatasRequest.Builder(); } /** * Builds instances of type {@link ListMetadatasRequest ListMetadatasRequest}. * 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 = "_ListMetadatasRequest", generator = "Immutables") public static final class Builder { private Builder() { } /** * Fill a builder with attribute values from the provided {@code ListMetadatasRequest} 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(ListMetadatasRequest instance) { return from((_ListMetadatasRequest) instance); } /** * Copy abstract value type {@code _ListMetadatasRequest} 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(_ListMetadatasRequest instance) { Objects.requireNonNull(instance, "instance"); return this; } /** * Builds a new {@link ListMetadatasRequest ListMetadatasRequest}. * @return An immutable instance of ListMetadatasRequest * @throws java.lang.IllegalStateException if any required attributes are missing */ public ListMetadatasRequest build() { return new ListMetadatasRequest(this); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy