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