[]
Serializable, Comparable<ErrorCorrectionLevel>, ConstableUse this enumeration with QR code barcode formulas to control how much error correction data is included in the generated symbol.
worksheet.getRange("A1").setValue("1234567890");
worksheet.getRange("B1").setFormula("=BC_QRCODE(A1,\"rgb(0, 0, 0)\",\"rgb(255, 255, 255)\",\"" + ErrorCorrectionLevel.H.name() + "\",2,\"auto\",\"auto\",FALSE,0,,\"UTF-8\",4,4,4,4)");
IQRCode qrCode = (IQRCode) worksheet.getRange("B1").getValue();
ErrorCorrectionLevel errorCorrectionLevel = qrCode.getErrorCorrectionLevel();
Enum.EnumDesc<E extends Enum<E>>static ErrorCorrectionLevelstatic ErrorCorrectionLevel[]values()name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null