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; } }