dagger.internal.codegen.validation.AutoValue_SpiModelBindingGraphConverter_DaggerExecutableElementImpl 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.validation;
import androidx.room.compiler.processing.XExecutableElement;
// Generated by com.google.auto.value.processor.AutoValueProcessor
final class AutoValue_SpiModelBindingGraphConverter_DaggerExecutableElementImpl extends SpiModelBindingGraphConverter.DaggerExecutableElementImpl {
private final XExecutableElement executableElement;
AutoValue_SpiModelBindingGraphConverter_DaggerExecutableElementImpl(
XExecutableElement executableElement) {
if (executableElement == null) {
throw new NullPointerException("Null executableElement");
}
this.executableElement = executableElement;
}
@Override
XExecutableElement executableElement() {
return executableElement;
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof SpiModelBindingGraphConverter.DaggerExecutableElementImpl) {
SpiModelBindingGraphConverter.DaggerExecutableElementImpl that = (SpiModelBindingGraphConverter.DaggerExecutableElementImpl) o;
return this.executableElement.equals(that.executableElement());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= executableElement.hashCode();
return h$;
}
}