QrCodeTypes
Inheritance: java.lang.Object
public class QrCodeTypes
QRCode Types container.
Constructors
Constructor | Description |
---|---|
QrCodeTypes() |
Fields
Field | Description |
---|---|
Aztec | Aztec Barcode Type object. |
DataMatrix | DataMatrix Barcode Type object. |
QR | QR Barcode Type object. |
GS1DataMatrix | GS1 DataMatrix Barcode Type object. |
GS1QR | GS1 QR Barcode Type object. |
HIBCLICQR | HIBC LIC QR-Code Type object. |
HIBCLICDataMatrix | HIBC LIC Data Matrix QR-Code Type object. |
HIBCLICAztec | HIBC LIC Aztec QR-Code Type object. |
HIBCPASQR | HIBC PAS QR-Code Type object. |
HIBCPASDataMatrix | HIBC PAS Data Matrix QR-Code Type object. |
HIBCPASAztec | HIBC PAS Aztec QR-Code Type object. |
HanXin | Han Xin QR-Code Type object. |
GS1HanXin | GS1 Han Xin QR-Code Type object. |
Methods
Method | Description |
---|---|
getAllTypes() | All QRCode types. |
parse(String parsingType) | Returns QRCode type with pasringType name. |
tryParse(String parsingType) | Returns QRCode type with pasringType name. |
getDecodeTypes() | Internal list of Decode Types for extraction |
isComplexType(System.Type type, QrCodeType qrCodeType) | |
getDataEncoding(System.Type type, QrCodeType qrCodeType) |
QrCodeTypes()
public QrCodeTypes()
Aztec
public static final QrCodeType Aztec
Aztec Barcode Type object.
DataMatrix
public static final QrCodeType DataMatrix
DataMatrix Barcode Type object.
QR
public static final QrCodeType QR
QR 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.
HIBCLICQR
public static final QrCodeType HIBCLICQR
HIBC LIC QR-Code Type object.
HIBCLICDataMatrix
public static final QrCodeType HIBCLICDataMatrix
HIBC LIC Data Matrix QR-Code Type object.
HIBCLICAztec
public static final QrCodeType HIBCLICAztec
HIBC LIC Aztec QR-Code Type object.
HIBCPASQR
public static final QrCodeType HIBCPASQR
HIBC PAS QR-Code Type object.
HIBCPASDataMatrix
public static final QrCodeType HIBCPASDataMatrix
HIBC PAS Data Matrix QR-Code Type object.
HIBCPASAztec
public static final QrCodeType HIBCPASAztec
HIBC PAS Aztec QR-Code Type object.
HanXin
public static final QrCodeType HanXin
Han Xin QR-Code Type object.
GS1HanXin
public static final QrCodeType GS1HanXin
GS1 Han Xin QR-Code Type object.
getAllTypes()
public static QrCodeType[] getAllTypes()
All QRCode types.
Returns: com.groupdocs.signature.domain.qrcodes.QrCodeType[]
parse(String parsingType)
public static QrCodeType parse(String parsingType)
Returns QRCode type with pasringType name. If name of QRCode is unknown - Exception will be throw
Parameters:
Parameter | Type | Description |
---|---|---|
parsingType | java.lang.String | Source string of QRCode type name. |
Returns: QrCodeType - QRCodeType instance.
tryParse(String parsingType)
public static QrCodeType tryParse(String parsingType)
Returns QRCode type with pasringType name. If name of QRCode is unknown - no Exception will be throw but method will return null value.
Parameters:
Parameter | Type | Description |
---|---|---|
parsingType | java.lang.String | Source string of QRCode type name. |
Returns: QrCodeType - QRCodeType instance.
getDecodeTypes()
public static System.Collections.Generic.List<BaseDecodeType> getDecodeTypes()
Internal list of Decode Types for extraction
Returns: com.aspose.ms.System.Collections.Generic.List<com.aspose.barcode.barcoderecognition.BaseDecodeType>
isComplexType(System.Type type, QrCodeType qrCodeType)
public static boolean isComplexType(System.Type type, QrCodeType qrCodeType)
Parameters:
Parameter | Type | Description |
---|---|---|
type | com.aspose.ms.System.Type | |
qrCodeType | QrCodeType |
Returns: boolean
getDataEncoding(System.Type type, QrCodeType qrCodeType)
public static IComplexCodeDataEncoding getDataEncoding(System.Type type, QrCodeType qrCodeType)
Parameters:
Parameter | Type | Description |
---|---|---|
type | com.aspose.ms.System.Type | |
qrCodeType | QrCodeType |
Returns: IComplexCodeDataEncoding