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

dagger.internal.codegen.kotlin.AutoValue_KotlinMetadata_MethodForAnnotations Maven / Gradle / Ivy

The newest version!
package dagger.internal.codegen.kotlin;

import androidx.room.compiler.processing.XMethodElement;
import javax.annotation.Nullable;

// Generated by com.google.auto.value.processor.AutoValueProcessor
final class AutoValue_KotlinMetadata_MethodForAnnotations extends KotlinMetadata.MethodForAnnotations {

  private final XMethodElement method;

  AutoValue_KotlinMetadata_MethodForAnnotations(
      @Nullable XMethodElement method) {
    this.method = method;
  }

  @Nullable
  @Override
  XMethodElement method() {
    return method;
  }

  @Override
  public String toString() {
    return "MethodForAnnotations{"
        + "method=" + method
        + "}";
  }

  @Override
  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (o instanceof KotlinMetadata.MethodForAnnotations) {
      KotlinMetadata.MethodForAnnotations that = (KotlinMetadata.MethodForAnnotations) o;
      return (this.method == null ? that.method() == null : this.method.equals(that.method()));
    }
    return false;
  }

  @Override
  public int hashCode() {
    int h$ = 1;
    h$ *= 1000003;
    h$ ^= (method == null) ? 0 : method.hashCode();
    return h$;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy