Package io.anyline.plugin.barcode
Enum BarcodeFormat
-
- All Implemented Interfaces:
public enum BarcodeFormat
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ONE_D_INVERSE
AZTEC
AZTEC_INVERSE
BOOKLAND
CODABAR
CODE_11
CODE_32
CODE_39
CODE_93
CODE_128
DATABAR
COUPON
DATA_MATRIX
DISCRETE_2_5
DOT_CODE
EAN_8
EAN_13
GS1_QR_CODE
GS1_128
ITF
ISSN_EAN
ISBT_128
KIX
MATRIX_2_5
MAXICODE
MSI
MICRO_QR
MICRO_PDF
PDF_417
POST_UK
QR_CODE
QR_INVERSE
RSS_14
RSS_EXPANDED
TRIOPTIC
UPC_A
UPC_E
UPU_FICS
USPS_4CB
US_PLANET
US_POSTNET
UNKNOWN
-
Method Summary
Modifier and Type Method Description static int
toBarcodeFormatInt(BarcodeFormat barcodeFormat)
String
toString()
static Array<BarcodeFormat>
values()
Returns an array containing the constants of this enum type, in the order they're declared. static BarcodeFormat
valueOf(String name)
Returns the enum constant of this type with the specified name. -
-
Method Detail
-
toBarcodeFormatInt
static int toBarcodeFormatInt(BarcodeFormat barcodeFormat)
-
values
static Array<BarcodeFormat> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static BarcodeFormat valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
- Returns:
the enum constant with the specified name
-
-
-
-