Uses of Class
io.nayuki.qrcodegen.QrSegment
-
Uses of QrSegment in io.nayuki.qrcodegen
Methods in io.nayuki.qrcodegen that return QrSegmentModifier and TypeMethodDescriptionstatic QrSegmentQrSegment.makeAlphanumeric(CharSequence text)Returns a segment representing the specified text string encoded in alphanumeric mode.static QrSegmentQrSegment.makeBytes(byte[] data)Returns a segment representing the specified binary data encoded in byte mode.static QrSegmentQrSegment.makeEci(int assignVal)Returns a segment representing an Extended Channel Interpretation (ECI) designator with the specified assignment value.static QrSegmentQrSegmentAdvanced.makeKanji(CharSequence text)Returns a segment representing the specified text string encoded in kanji mode.static QrSegmentQrSegment.makeNumeric(CharSequence digits)Returns a segment representing the specified string of decimal digits encoded in numeric mode.Methods in io.nayuki.qrcodegen that return types with arguments of type QrSegmentModifier and TypeMethodDescriptionQrSegment.makeSegments(CharSequence text)Returns a list of zero or more segments to represent the specified Unicode text string.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.Method parameters in io.nayuki.qrcodegen with type arguments of type QrSegmentModifier and TypeMethodDescriptionstatic 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.