public class QrCodeTypes extends Object
QRCode Types container.
Modifier and Type | Field and Description |
---|---|
static QrCodeType |
Aztec
Aztec Barcode Type object.
|
static QrCodeType |
DataMatrix
DataMatrix Barcode Type object.
|
static QrCodeType |
GS1DataMatrix
GS1 DataMatrix Barcode Type object.
|
static QrCodeType |
GS1QR
GS1 QR Barcode Type object.
|
static QrCodeType |
QR
QR Barcode Type object.
|
Constructor and Description |
---|
QrCodeTypes() |
Modifier and Type | Method and Description |
---|---|
static QrCodeType[] |
getAllTypes()
All QRCode types.
|
static QrCodeType |
parse(String parsingType)
Returns QRCode type with pasringType name.
|
static QrCodeType |
tryParse(String parsingType)
Returns QRCode type with pasringType name.
|
public static final QrCodeType Aztec
Aztec Barcode Type object.
public static final QrCodeType DataMatrix
DataMatrix Barcode Type object.
public static final QrCodeType GS1DataMatrix
GS1 DataMatrix Barcode Type object.
public static final QrCodeType GS1QR
GS1 QR Barcode Type object.
public static final QrCodeType QR
QR Barcode Type object.
public static QrCodeType[] getAllTypes()
All QRCode types.
public static QrCodeType parse(String parsingType) throws Exception
Returns QRCode type with pasringType name. If name of QRCode is unknown - Exception will be throw
parsingType
- Source string of QRCode type name.Exception
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.
parsingType
- Source string of QRCode type name.Exception