what-the-bank/sources/o/gjZ.java

88 lines
2.3 KiB
Java

package o;
/* loaded from: classes6.dex */
public class gjZ {
public RVV a;
private long b;
private final String c;
private long d;
public LWm e;
private long f;
private long h;
/* loaded from: classes6.dex */
public enum RVV {
SPLIT,
UNSPLIT
}
/* loaded from: classes6.dex */
public enum LWm {
RUNNING { // from class: o.gjZ.LWm.4
},
STOPPED { // from class: o.gjZ.LWm.3
},
SUSPENDED { // from class: o.gjZ.LWm.1
},
UNSTARTED { // from class: o.gjZ.LWm.5
};
/* synthetic */ LWm(byte b) {
this();
}
}
public static gjZ d() {
gjZ gjz = new gjZ();
gjz.a();
return gjz;
}
public gjZ() {
this((byte) 0);
}
private gjZ(byte b) {
this.e = LWm.UNSTARTED;
this.a = RVV.UNSPLIT;
this.c = null;
}
public final void a() {
if (this.e == LWm.STOPPED) {
throw new IllegalStateException("Stopwatch must be reset before being restarted. ");
}
if (this.e != LWm.UNSTARTED) {
throw new IllegalStateException("Stopwatch already started. ");
}
this.d = System.nanoTime();
this.b = System.currentTimeMillis();
this.e = LWm.RUNNING;
}
public final void e() {
if (this.e != LWm.RUNNING && this.e != LWm.SUSPENDED) {
throw new IllegalStateException("Stopwatch is not running. ");
}
if (this.e == LWm.RUNNING) {
this.f = System.nanoTime();
this.h = System.currentTimeMillis();
}
this.e = LWm.STOPPED;
}
/* JADX WARN: Removed duplicated region for block: B:41:0x00d1 */
/* JADX WARN: Removed duplicated region for block: B:48:0x00ec A[SYNTHETIC] */
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
public java.lang.String toString() {
/*
Method dump skipped, instructions count: 584
To view this dump add '--comments-level debug' option
*/
throw new UnsupportedOperationException("Method not decompiled: o.gjZ.toString():java.lang.String");
}
}