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

org.cloudfoundry.client.v3.admin.ClearBuildpackCacheRequest Maven / Gradle / Ivy

There is a newer version: 5.12.2.RELEASE
Show newest version
package org.cloudfoundry.client.v3.admin;

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

/**
 * The request payload for the Clear Buildpack Cache operation
 */
@Generated(from = "_ClearBuildpackCacheRequest", generator = "Immutables")
@SuppressWarnings({"all"})
@javax.annotation.Generated("org.immutables.processor.ProxyProcessor")
public final class ClearBuildpackCacheRequest
    extends org.cloudfoundry.client.v3.admin._ClearBuildpackCacheRequest {

  private ClearBuildpackCacheRequest(ClearBuildpackCacheRequest.Builder builder) {
  }

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

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

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

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

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy