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