Enumeration QRCodeErrorCorrectionLevel
QRCodeErrorCorrectionLevel describes the error correction level when processing the QR code.
@Retention(RetentionPolicy.CLASS)
public @interface EnumQRCodeErrorCorrectionLevel {
//Error Correction Level H (high)
int QRECL_ERROR_CORRECTION_H = 0;
//Error Correction Level L (low)
int QRECL_ERROR_CORRECTION_L = 1;
//Error Correction Level M (medium-low)
int QRECL_ERROR_CORRECTION_M = 2;
//Error Correction Level Q (medium-high)
int QRECL_ERROR_CORRECTION_Q = 3;
}