- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
24 lines
433 B
Java
24 lines
433 B
Java
package com.google.firebase.heartbeatinfo;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface HeartBeatInfo {
|
|
HeartBeat getHeartBeatCode(String str);
|
|
|
|
public enum HeartBeat {
|
|
NONE(0),
|
|
SDK(1),
|
|
GLOBAL(2),
|
|
COMBINED(3);
|
|
|
|
private final int code;
|
|
|
|
public int getCode() {
|
|
return this.code;
|
|
}
|
|
|
|
HeartBeat(int i) {
|
|
this.code = i;
|
|
}
|
|
}
|
|
}
|