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

com.spotify.docker.client.messages.AutoValue_HostConfig_Bind_BuilderFrom Maven / Gradle / Ivy

There is a newer version: 8.16.0
Show newest version

package com.spotify.docker.client.messages;

import javax.annotation.Generated;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
 final class AutoValue_HostConfig_Bind_BuilderFrom extends HostConfig.Bind.BuilderFrom {

  private final String from;

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

  @Override
  public String from() {
    return from;
  }

  @Override
  public String toString() {
    return "BuilderFrom{"
        + "from=" + from
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof HostConfig.Bind.BuilderFrom) {
      HostConfig.Bind.BuilderFrom that = (HostConfig.Bind.BuilderFrom) o;
      return (this.from.equals(that.from()));
    }
    return false;
  }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy