Rabbit-R1/android (non root)/java/sources/androidx/work/impl/model/SystemIdInfo.java
2024-05-21 17:08:36 -04:00

76 lines
3.8 KiB
Java

package androidx.work.impl.model;
import kotlin.Metadata;
import kotlin.jvm.internal.Intrinsics;
/* compiled from: SystemIdInfo.kt */
@Metadata(d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u000e\n\u0000\n\u0002\u0010\b\n\u0002\b\t\n\u0002\u0010\u000b\n\u0002\b\u0004\b\u0087\b\u0018\u00002\u00020\u0001B\u001d\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u0012\u0006\u0010\u0006\u001a\u00020\u0005¢\u0006\u0002\u0010\u0007J\t\u0010\n\u001a\u00020\u0003HÆ\u0003J\t\u0010\u000b\u001a\u00020\u0005HÆ\u0003J\t\u0010\f\u001a\u00020\u0005HÆ\u0003J'\u0010\r\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u00052\b\b\u0002\u0010\u0006\u001a\u00020\u0005HÆ\u0001J\u0013\u0010\u000e\u001a\u00020\u000f2\b\u0010\u0010\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0011\u001a\u00020\u0005HÖ\u0001J\t\u0010\u0012\u001a\u00020\u0003HÖ\u0001R\u0016\u0010\u0004\u001a\u00020\u00058\u0006X\u0087\u0004¢\u0006\b\n\u0000\u001a\u0004\b\b\u0010\tR\u0010\u0010\u0006\u001a\u00020\u00058\u0006X\u0087\u0004¢\u0006\u0002\n\u0000R\u0010\u0010\u0002\u001a\u00020\u00038\u0006X\u0087\u0004¢\u0006\u0002\n\u0000¨\u0006\u0013"}, d2 = {"Landroidx/work/impl/model/SystemIdInfo;", "", "workSpecId", "", "generation", "", "systemId", "(Ljava/lang/String;II)V", "getGeneration", "()I", "component1", "component2", "component3", "copy", "equals", "", "other", "hashCode", "toString", "work-runtime_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
/* loaded from: classes2.dex */
public final /* data */ class SystemIdInfo {
private final int generation;
public final int systemId;
public final String workSpecId;
public static /* synthetic */ SystemIdInfo copy$default(SystemIdInfo systemIdInfo, String str, int i, int i2, int i3, Object obj) {
if ((i3 & 1) != 0) {
str = systemIdInfo.workSpecId;
}
if ((i3 & 2) != 0) {
i = systemIdInfo.generation;
}
if ((i3 & 4) != 0) {
i2 = systemIdInfo.systemId;
}
return systemIdInfo.copy(str, i, i2);
}
/* renamed from: component1, reason: from getter */
public final String getWorkSpecId() {
return this.workSpecId;
}
/* renamed from: component2, reason: from getter */
public final int getGeneration() {
return this.generation;
}
/* renamed from: component3, reason: from getter */
public final int getSystemId() {
return this.systemId;
}
public final SystemIdInfo copy(String workSpecId, int generation, int systemId) {
Intrinsics.checkNotNullParameter(workSpecId, "workSpecId");
return new SystemIdInfo(workSpecId, generation, systemId);
}
public boolean equals(Object other) {
if (this == other) {
return true;
}
if (!(other instanceof SystemIdInfo)) {
return false;
}
SystemIdInfo systemIdInfo = (SystemIdInfo) other;
return Intrinsics.areEqual(this.workSpecId, systemIdInfo.workSpecId) && this.generation == systemIdInfo.generation && this.systemId == systemIdInfo.systemId;
}
public final int getGeneration() {
return this.generation;
}
public int hashCode() {
return (((this.workSpecId.hashCode() * 31) + Integer.hashCode(this.generation)) * 31) + Integer.hashCode(this.systemId);
}
public String toString() {
return "SystemIdInfo(workSpecId=" + this.workSpecId + ", generation=" + this.generation + ", systemId=" + this.systemId + ')';
}
public SystemIdInfo(String workSpecId, int i, int i2) {
Intrinsics.checkNotNullParameter(workSpecId, "workSpecId");
this.workSpecId = workSpecId;
this.generation = i;
this.systemId = i2;
}
}