public class QRCodeTypes extends Object
QRCode Types container.
Modifier and Type | Field and Description |
---|---|
static QRCodeType |
AZTEC
Aztec Barcode Type object.
|
static QRCodeType |
DATA_MATRIX
DataMatrix Barcode Type object.
|
static QRCodeType |
GS_1_DATA_MATRIX
GS1 DataMatrix Barcode Type object.
|
static QRCodeType |
GS_1_QR
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 DATA_MATRIX
DataMatrix Barcode Type object.
public static final QRCodeType GS_1_DATA_MATRIX
GS1 DataMatrix Barcode Type object.
public static final QRCodeType GS_1_QR
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)
Returns QRCode type with pasringType name. If name of QRCode is unknown - Exception will be throw
parsingType
- Source string of QRCode type name.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.
parsingType
- Source string of QRCode type name.Copyright © 2018. All rights reserved.