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