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.18.4
Show newest version

package com.spotify.docker.client.messages;

import com.google.common.collect.ImmutableMap;
import java.util.Map;
import javax.annotation.Generated;

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

  private final ImmutableMap configs;

  private AutoValue_RegistryConfigs(
      ImmutableMap 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;
  }

  static final class Builder extends RegistryConfigs.Builder {
    private ImmutableMap.Builder configsBuilder$;
    private ImmutableMap configs;
    Builder() {
      this.configs = ImmutableMap.of();
    }
    Builder(RegistryConfigs source) {
      this.configs = source.configs();
    }
    @Override
    public RegistryConfigs.Builder configs(Map configs) {
      if (configsBuilder$ != null) {
        throw new IllegalStateException("Cannot set configs after calling configsBuilder()");
      }
      this.configs = ImmutableMap.copyOf(configs);
      return this;
    }
    @Override
    public ImmutableMap.Builder configsBuilder() {
      if (configsBuilder$ == null) {
        configsBuilder$ = ImmutableMap.builder();
        configsBuilder$.putAll(configs);
        configs = null;
      }
      return configsBuilder$;
    }
    @Override
    public RegistryConfigs build() {
      if (configsBuilder$ != null) {
        configs = configsBuilder$.build();
      }
      return new AutoValue_RegistryConfigs(
          this.configs);
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy