Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
@@ -0,0 +1,62 @@
|
||||
package com.google.firebase;
|
||||
|
||||
import C.w;
|
||||
|
||||
/* JADX INFO: Access modifiers changed from: package-private */
|
||||
/* loaded from: classes3.dex */
|
||||
public final class AutoValue_StartupTime extends StartupTime {
|
||||
private final long elapsedRealtime;
|
||||
private final long epochMillis;
|
||||
private final long uptimeMillis;
|
||||
|
||||
public AutoValue_StartupTime(long j4, long j5, long j6) {
|
||||
this.epochMillis = j4;
|
||||
this.elapsedRealtime = j5;
|
||||
this.uptimeMillis = j6;
|
||||
}
|
||||
|
||||
public boolean equals(Object obj) {
|
||||
if (obj == this) {
|
||||
return true;
|
||||
}
|
||||
if (obj instanceof StartupTime) {
|
||||
StartupTime startupTime = (StartupTime) obj;
|
||||
if (this.epochMillis == startupTime.getEpochMillis() && this.elapsedRealtime == startupTime.getElapsedRealtime() && this.uptimeMillis == startupTime.getUptimeMillis()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override // com.google.firebase.StartupTime
|
||||
public long getElapsedRealtime() {
|
||||
return this.elapsedRealtime;
|
||||
}
|
||||
|
||||
@Override // com.google.firebase.StartupTime
|
||||
public long getEpochMillis() {
|
||||
return this.epochMillis;
|
||||
}
|
||||
|
||||
@Override // com.google.firebase.StartupTime
|
||||
public long getUptimeMillis() {
|
||||
return this.uptimeMillis;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
long j4 = this.epochMillis;
|
||||
long j5 = this.elapsedRealtime;
|
||||
int i = (((((int) (j4 ^ (j4 >>> 32))) ^ 1000003) * 1000003) ^ ((int) (j5 ^ (j5 >>> 32)))) * 1000003;
|
||||
long j6 = this.uptimeMillis;
|
||||
return ((int) ((j6 >>> 32) ^ j6)) ^ i;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("StartupTime{epochMillis=");
|
||||
sb.append(this.epochMillis);
|
||||
sb.append(", elapsedRealtime=");
|
||||
sb.append(this.elapsedRealtime);
|
||||
sb.append(", uptimeMillis=");
|
||||
return w.q(sb, this.uptimeMillis, "}");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user