Table of contents
Swift
Objective-C

This documentation is deprecated. It applies only to legacy version 9.x of Barcode Reader and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

EnumQRCodeErrorCorrectionLevel

  • Android
  • Objective-C
  • Swift
public class EnumQRCodeErrorCorrectionLevel {
    public static final int QRECL_ERROR_CORRECTION_H = 0;
    public static final int QRECL_ERROR_CORRECTION_L = 1;
    public static final int QRECL_ERROR_CORRECTION_M = 2;
    public static final int QRECL_ERROR_CORRECTION_Q = 3;
}
typedef NS_ENUM(NSInteger, EnumQRCodeErrorCorrectionLevel)
{
    /** Error Correction Level H (high) */
    EnumQRCodeErrorCorrectionLevelErrorCorrectionH = 0,
    /** Error Correction Level L (low) */
    EnumQRCodeErrorCorrectionLevelErrorCorrectionL = 1,
    /** Error Correction Level M (medium-low) */
    EnumQRCodeErrorCorrectionLevelErrorCorrectionM = 2,
    /** Error Correction Level Q (medium-high) */
    EnumQRCodeErrorCorrectionLevelErrorCorrectionQ = 3
};
public enum EnumQRCodeErrorCorrectionLevel : Int{
    /** Error Correction Level H (high) */
    errorCorrectionH = 0
    /** Error Correction Level L (low) */
    errorCorrectionL = 1
    /** Error Correction Level M (medium-low) */
    errorCorrectionM = 2
    /** Error Correction Level Q (medium-high) */
    errorCorrectionQ = 3
}

This page is compatible for:

Is this page helpful?

YesYes NoNo