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

com.spotify.docker.client.messages.swarm.AutoValue_Spread Maven / Gradle / Ivy

There is a newer version: 8.18.4
Show newest version

package com.spotify.docker.client.messages.swarm;

import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.Generated;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
 final class AutoValue_Spread extends Spread {

  private final String spreadDescriptor;

  AutoValue_Spread(
      String spreadDescriptor) {
    if (spreadDescriptor == null) {
      throw new NullPointerException("Null spreadDescriptor");
    }
    this.spreadDescriptor = spreadDescriptor;
  }

  @JsonProperty(value = "SpreadDescriptor")
  @Override
  public String spreadDescriptor() {
    return spreadDescriptor;
  }

  @Override
  public String toString() {
    return "Spread{"
        + "spreadDescriptor=" + spreadDescriptor
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof Spread) {
      Spread that = (Spread) o;
      return (this.spreadDescriptor.equals(that.spreadDescriptor()));
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h = 1;
    h *= 1000003;
    h ^= this.spreadDescriptor.hashCode();
    return h;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy