com.groupdocs.signature.domain.qrcodes

Class QrCodeTypes



  • public class QrCodeTypes
    extends Object

    QRCode Types container.

    • Field Detail

      • Aztec

        public static final QrCodeType Aztec

        Aztec Barcode Type object.

      • DataMatrix

        public static final QrCodeType DataMatrix

        DataMatrix Barcode Type object.

      • GS1DataMatrix

        public static final QrCodeType GS1DataMatrix

        GS1 DataMatrix Barcode Type object.

      • GS1QR

        public static final QrCodeType GS1QR

        GS1 QR Barcode Type object.

      • QR

        public static final QrCodeType QR

        QR Barcode Type object.

    • Constructor Detail

      • QrCodeTypes

        public QrCodeTypes()
    • Method Detail

      • getAllTypes

        public static QrCodeType[] getAllTypes()

        All QRCode types.

      • parse

        public static QrCodeType parse(String parsingType)
                                throws Exception

        Returns QRCode type with pasringType name. If name of QRCode is unknown - Exception will be throw

        Parameters:
        parsingType - Source string of QRCode type name.
        Returns:
        QRCodeType instance.
        Throws:
        Exception
      • tryParse

        public static QrCodeType tryParse(String parsingType)
                                   throws Exception

        Returns QRCode type with pasringType name. If name of QRCode is unknown - no Exception will be throw but method will return null value.

        Parameters:
        parsingType - Source string of QRCode type name.
        Returns:
        QRCodeType instance.
        Throws:
        Exception