dagger.internal.codegen.kotlin.AutoValue_KotlinMetadata_MethodForAnnotations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dagger-compiler Show documentation
Show all versions of dagger-compiler Show documentation
A fast dependency injector for Android and Java.
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$;
}
}