Uses of Enum Class
io.nayuki.qrcodegen.QrCode.Ecc
-
Uses of QrCode.Ecc in io.nayuki.qrcodegen
Fields in io.nayuki.qrcodegen declared as QrCode.EccModifier and TypeFieldDescriptionQrCode.errorCorrectionLevelThe error correction level used in this QR Code, which is notnull.Methods in io.nayuki.qrcodegen that return QrCode.EccModifier and TypeMethodDescriptionstatic QrCode.EccReturns the enum constant of this class with the specified name.static QrCode.Ecc[]QrCode.Ecc.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in io.nayuki.qrcodegen with parameters of type QrCode.EccModifier and TypeMethodDescriptionstatic QrCodeQrCode.encodeBinary(byte[] data, QrCode.Ecc ecl)Returns a QR Code representing the specified binary data at the specified error correction level.static QrCodeQrCode.encodeSegments(List<QrSegment> segs, QrCode.Ecc ecl)Returns a QR Code representing the specified segments at the specified error correction level.static QrCodeQrCode.encodeSegments(List<QrSegment> segs, QrCode.Ecc ecl, int minVersion, int maxVersion, int mask, boolean boostEcl)Returns a QR Code representing the specified segments with the specified encoding parameters.static QrCodeQrCode.encodeText(CharSequence text, QrCode.Ecc ecl)Returns a QR Code representing the specified Unicode text string at the specified error correction level.QrSegmentAdvanced.makeSegmentsOptimally(CharSequence text, QrCode.Ecc ecl, int minVersion, int maxVersion)Returns a list of zero or more segments to represent the specified Unicode text string.Constructors in io.nayuki.qrcodegen with parameters of type QrCode.EccModifierConstructorDescriptionQrCode(int ver, QrCode.Ecc ecl, byte[] dataCodewords, int msk)Constructs a QR Code with the specified version number, error correction level, data codeword bytes, and mask number.