28 lines
516 B
Java
28 lines
516 B
Java
|
package o;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public enum CeT {
|
||
|
NO_PROMPTPAY(1),
|
||
|
NO_RTP(2),
|
||
|
HAVE_PROMPTPAY_WITH_RTP(3);
|
||
|
|
||
|
public int type;
|
||
|
|
||
|
CeT(int i) {
|
||
|
this.type = i;
|
||
|
}
|
||
|
|
||
|
public static CeT a(int i) {
|
||
|
CeT ceT = NO_PROMPTPAY;
|
||
|
if (ceT.type == i) {
|
||
|
return ceT;
|
||
|
}
|
||
|
CeT ceT2 = NO_RTP;
|
||
|
if (ceT2.type == i) {
|
||
|
return ceT2;
|
||
|
}
|
||
|
CeT ceT3 = HAVE_PROMPTPAY_WITH_RTP;
|
||
|
return ceT3.type == i ? ceT3 : ceT;
|
||
|
}
|
||
|
}
|