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

com.google.errorprone.bugpatterns.threadsafety.AutoValue_AnnotationInfo Maven / Gradle / Ivy

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

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

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

  private final String typeName;

  private final ImmutableSet internalContainerOf;

  AutoValue_AnnotationInfo(
      String typeName,
      ImmutableSet internalContainerOf) {
    if (typeName == null) {
      throw new NullPointerException("Null typeName");
    }
    this.typeName = typeName;
    if (internalContainerOf == null) {
      throw new NullPointerException("Null internalContainerOf");
    }
    this.internalContainerOf = internalContainerOf;
  }

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

  @Override
  ImmutableSet internalContainerOf() {
    return internalContainerOf;
  }

  @Override
  public String toString() {
    return "AnnotationInfo{"
         + "typeName=" + typeName + ", "
         + "internalContainerOf=" + internalContainerOf
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof AnnotationInfo) {
      AnnotationInfo that = (AnnotationInfo) o;
      return this.typeName.equals(that.typeName())
          && this.internalContainerOf.equals(that.internalContainerOf());
    }
    return false;
  }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy