mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
22 lines
316 B
Java
22 lines
316 B
Java
package com.google.zxing;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public enum BarcodeFormat {
|
|
AZTEC,
|
|
CODABAR,
|
|
CODE_39,
|
|
CODE_93,
|
|
CODE_128,
|
|
DATA_MATRIX,
|
|
EAN_8,
|
|
EAN_13,
|
|
ITF,
|
|
MAXICODE,
|
|
PDF_417,
|
|
QR_CODE,
|
|
RSS_14,
|
|
RSS_EXPANDED,
|
|
UPC_A,
|
|
UPC_E,
|
|
UPC_EAN_EXTENSION
|
|
}
|