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

19 lines
298 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public enum FGY {
CREDIT("C"),
DEBIT("D");
public String type;
FGY(String str) {
this.type = str;
}
public static FGY a(String str) {
FGY fgy = CREDIT;
return fgy.type.equals(str) ? fgy : DEBIT;
}
}