dagger.hilt.android.processor.internal.bindvalue.AutoValue_BindValueMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hilt-compiler Show documentation
Show all versions of hilt-compiler Show documentation
A fast dependency injector for Android and Java.
package dagger.hilt.android.processor.internal.bindvalue;
import androidx.room.compiler.processing.XTypeElement;
import com.google.common.collect.ImmutableSet;
// Generated by com.google.auto.value.processor.AutoValueProcessor
final class AutoValue_BindValueMetadata extends BindValueMetadata {
private final XTypeElement testElement;
private final ImmutableSet bindValueElements;
AutoValue_BindValueMetadata(
XTypeElement testElement,
ImmutableSet bindValueElements) {
if (testElement == null) {
throw new NullPointerException("Null testElement");
}
this.testElement = testElement;
if (bindValueElements == null) {
throw new NullPointerException("Null bindValueElements");
}
this.bindValueElements = bindValueElements;
}
@Override
XTypeElement testElement() {
return testElement;
}
@Override
ImmutableSet bindValueElements() {
return bindValueElements;
}
@Override
public String toString() {
return "BindValueMetadata{"
+ "testElement=" + testElement + ", "
+ "bindValueElements=" + bindValueElements
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof BindValueMetadata) {
BindValueMetadata that = (BindValueMetadata) o;
return this.testElement.equals(that.testElement())
&& this.bindValueElements.equals(that.bindValueElements());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= testElement.hashCode();
h$ *= 1000003;
h$ ^= bindValueElements.hashCode();
return h$;
}
}