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

com.google.errorprone.bugpatterns.AutoValue_ProtoRedundantSet_MapField Maven / Gradle / Ivy

There is a newer version: 2.27.1
Show newest version
package com.google.errorprone.bugpatterns;

import javax.annotation.processing.Generated;

@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_ProtoRedundantSet_MapField extends ProtoRedundantSet.MapField {

  private final String name;

  private final Object key;

  AutoValue_ProtoRedundantSet_MapField(
      String name,
      Object key) {
    if (name == null) {
      throw new NullPointerException("Null name");
    }
    this.name = name;
    if (key == null) {
      throw new NullPointerException("Null key");
    }
    this.key = key;
  }

  @Override
  String getName() {
    return name;
  }

  @Override
  Object getKey() {
    return key;
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof ProtoRedundantSet.MapField) {
      ProtoRedundantSet.MapField that = (ProtoRedundantSet.MapField) o;
      return this.name.equals(that.getName())
          && this.key.equals(that.getKey());
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= name.hashCode();
    h$ *= 1000003;
    h$ ^= key.hashCode();
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy