Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package com.google.firebase.heartbeatinfo;
|
||||
|
||||
import com.google.auto.value.AutoValue;
|
||||
|
||||
@AutoValue
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class SdkHeartBeatResult implements Comparable<SdkHeartBeatResult> {
|
||||
public static SdkHeartBeatResult create(String str, long j4) {
|
||||
return new AutoValue_SdkHeartBeatResult(str, j4);
|
||||
}
|
||||
|
||||
public abstract long getMillis();
|
||||
|
||||
public abstract String getSdkName();
|
||||
|
||||
@Override // java.lang.Comparable
|
||||
public int compareTo(SdkHeartBeatResult sdkHeartBeatResult) {
|
||||
return getMillis() < sdkHeartBeatResult.getMillis() ? -1 : 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user