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-android-compiler Show documentation
Show all versions of hilt-android-compiler Show documentation
A fast dependency injector for Android and Java.
package dagger.hilt.android.processor.internal.bindvalue;
import com.google.common.collect.ImmutableSet;
import javax.annotation.Generated;
import javax.lang.model.element.TypeElement;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_BindValueMetadata extends BindValueMetadata {
private final TypeElement testElement;
private final ImmutableSet bindValueElements;
AutoValue_BindValueMetadata(
TypeElement 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
TypeElement 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$;
}
}