72 lines
1.6 KiB
Java
72 lines
1.6 KiB
Java
package com.google.android.gms.internal.firebase_ml;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public enum zzsk implements zzuh {
|
|
CODE_128(1),
|
|
CODE_39(2),
|
|
CODE_93(3),
|
|
CODABAR(4),
|
|
DATA_MATRIX(5),
|
|
EAN_13(6),
|
|
EAN_8(7),
|
|
ITF(8),
|
|
QR_CODE(9),
|
|
UPC_A(10),
|
|
UPC_E(11),
|
|
PDF417(12),
|
|
AZTEC(13),
|
|
DATABAR(14);
|
|
|
|
private static final zzui<zzsk> zzbe = new zzui<zzsk>() { // from class: com.google.android.gms.internal.firebase_ml.zzsl
|
|
};
|
|
private final int value;
|
|
|
|
public static zzuj zzq() {
|
|
return zzsm.zzbs;
|
|
}
|
|
|
|
zzsk(int i) {
|
|
this.value = i;
|
|
}
|
|
|
|
@Override // com.google.android.gms.internal.firebase_ml.zzuh
|
|
public final int zzo() {
|
|
return this.value;
|
|
}
|
|
|
|
public static zzsk zzcg(int i) {
|
|
switch (i) {
|
|
case 1:
|
|
return CODE_128;
|
|
case 2:
|
|
return CODE_39;
|
|
case 3:
|
|
return CODE_93;
|
|
case 4:
|
|
return CODABAR;
|
|
case 5:
|
|
return DATA_MATRIX;
|
|
case 6:
|
|
return EAN_13;
|
|
case 7:
|
|
return EAN_8;
|
|
case 8:
|
|
return ITF;
|
|
case 9:
|
|
return QR_CODE;
|
|
case 10:
|
|
return UPC_A;
|
|
case 11:
|
|
return UPC_E;
|
|
case 12:
|
|
return PDF417;
|
|
case 13:
|
|
return AZTEC;
|
|
case 14:
|
|
return DATABAR;
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
}
|