71 lines
1.7 KiB
Java
71 lines
1.7 KiB
Java
package o;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public enum glN implements InterfaceC15243glE {
|
|
CVCA(192),
|
|
DV_AB(128),
|
|
DV_CSP(64),
|
|
SIGNTERM(0);
|
|
|
|
private byte value;
|
|
|
|
glN(int i) {
|
|
this.value = (byte) i;
|
|
}
|
|
|
|
/* renamed from: o.glN$5, reason: invalid class name */
|
|
/* loaded from: classes6.dex */
|
|
static /* synthetic */ class AnonymousClass5 {
|
|
static final int[] d;
|
|
|
|
static {
|
|
int[] iArr = new int[glN.values().length];
|
|
d = iArr;
|
|
try {
|
|
iArr[glN.CVCA.ordinal()] = 1;
|
|
} catch (NoSuchFieldError unused) {
|
|
}
|
|
try {
|
|
d[glN.DV_AB.ordinal()] = 2;
|
|
} catch (NoSuchFieldError unused2) {
|
|
}
|
|
try {
|
|
d[glN.DV_CSP.ordinal()] = 3;
|
|
} catch (NoSuchFieldError unused3) {
|
|
}
|
|
try {
|
|
d[glN.SIGNTERM.ordinal()] = 4;
|
|
} catch (NoSuchFieldError unused4) {
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override // java.lang.Enum
|
|
public final String toString() {
|
|
int i = AnonymousClass5.d[ordinal()];
|
|
if (i == 1) {
|
|
return "CVCA";
|
|
}
|
|
if (i == 2) {
|
|
return "DV-Accreditation-Body";
|
|
}
|
|
if (i == 3) {
|
|
return "DV-Certification-Service-Provider";
|
|
}
|
|
if (i == 4) {
|
|
return "Signature-Terminal";
|
|
}
|
|
throw new IllegalStateException("Enum case not handled");
|
|
}
|
|
|
|
@Override // o.InterfaceC15243glE
|
|
public final boolean a() {
|
|
return this == CVCA;
|
|
}
|
|
|
|
@Override // o.InterfaceC15243glE
|
|
public final byte c() {
|
|
return this.value;
|
|
}
|
|
}
|