dagger.hilt.processor.internal.uninstallmodules.AutoValue_AggregatedUninstallModulesMetadata 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.processor.internal.uninstallmodules;
import androidx.room.compiler.processing.XTypeElement;
import com.google.common.collect.ImmutableList;
// Generated by com.google.auto.value.processor.AutoValueProcessor
final class AutoValue_AggregatedUninstallModulesMetadata extends AggregatedUninstallModulesMetadata {
private final XTypeElement aggregatingElement;
private final XTypeElement testElement;
private final ImmutableList uninstallModuleElements;
AutoValue_AggregatedUninstallModulesMetadata(
XTypeElement aggregatingElement,
XTypeElement testElement,
ImmutableList uninstallModuleElements) {
if (aggregatingElement == null) {
throw new NullPointerException("Null aggregatingElement");
}
this.aggregatingElement = aggregatingElement;
if (testElement == null) {
throw new NullPointerException("Null testElement");
}
this.testElement = testElement;
if (uninstallModuleElements == null) {
throw new NullPointerException("Null uninstallModuleElements");
}
this.uninstallModuleElements = uninstallModuleElements;
}
@Override
public XTypeElement aggregatingElement() {
return aggregatingElement;
}
@Override
public XTypeElement testElement() {
return testElement;
}
@Override
public ImmutableList uninstallModuleElements() {
return uninstallModuleElements;
}
@Override
public String toString() {
return "AggregatedUninstallModulesMetadata{"
+ "aggregatingElement=" + aggregatingElement + ", "
+ "testElement=" + testElement + ", "
+ "uninstallModuleElements=" + uninstallModuleElements
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof AggregatedUninstallModulesMetadata) {
AggregatedUninstallModulesMetadata that = (AggregatedUninstallModulesMetadata) o;
return this.aggregatingElement.equals(that.aggregatingElement())
&& this.testElement.equals(that.testElement())
&& this.uninstallModuleElements.equals(that.uninstallModuleElements());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= aggregatingElement.hashCode();
h$ *= 1000003;
h$ ^= testElement.hashCode();
h$ *= 1000003;
h$ ^= uninstallModuleElements.hashCode();
return h$;
}
}