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.
package dagger.internal.codegen.kotlin;
import javax.annotation.Generated;
import javax.annotation.Nullable;
import javax.lang.model.element.ExecutableElement;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_KotlinMetadata_MethodForAnnotations extends KotlinMetadata.MethodForAnnotations {
private final ExecutableElement method;
AutoValue_KotlinMetadata_MethodForAnnotations(
@Nullable ExecutableElement method) {
this.method = method;
}
@Nullable
@Override
ExecutableElement 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 - 2025 Weber Informatics LLC | Privacy Policy