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

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

There is a newer version: 8.16.0
Show newest version

package com.spotify.docker.client.messages;

import com.google.common.collect.ImmutableMap;
import javax.annotation.Generated;

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

  private final ImmutableMap configs;

  AutoValue_RegistryConfigs(
      ImmutableMap configs) {
    if (configs == null) {
      throw new NullPointerException("Null configs");
    }
    this.configs = configs;
  }

  @Override
  public ImmutableMap configs() {
    return configs;
  }

  @Override
  public String toString() {
    return "RegistryConfigs{"
        + "configs=" + configs
        + "}";
  }

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy