Enum BarcodeFormat
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum BarcodeFormat extends Enum<BarcodeFormat>
Enumerates supported barcode types.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
BarcodeFormat.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description AZTEC
Aztec 2D barcode format.
CODABAR
CODABAR 1D format.
CODE_25
Code 25 1D format.
CODE_39
Code 39 1D format.
CODE_93
Code 93 1D format.
CODE_128
Code 128 1D format.
DATA_MATRIX
Data Matrix 2D barcode format.
EAN_8
EAN-8 1D format.
EAN_13
EAN-13 1D format.
ITF
ITF (Interleaved Two of Five) 1D format.
PDF_417
PDF417 format.
QR_CODE
QR Code 2D barcode format.
MICRO_QR_CODE
Micro QR Code 2D barcode format.
DATABAR
GS1 DataBar-14 (formerly RSS-14) (1D)
DATABAR_EXPANDED
GS1 DataBar Expanded (formerly RSS Expanded) (1D)
UPC_A
UPC-A 1D format.
UPC_E
UPC-E 1D format.
MSI_PLESSEY
MSI_PLESSEY barcode format
IATA_2_OF_5
IATA_2_OF_5 barcode format
INDUSTRIAL_2_OF_5
INDUSTRIAL_2_OF_5 barcode format
USPS_INTELLIGENT_MAIL
USPS Intelligent Mail, a.k.a. USPS OneCode, USPS-STD-11
ROYAL_MAIL
Royal Mail Four-State Customer Code, a.k.a. RM4SCC, CBC, BPO 4 State Code
JAPAN_POST
Japan Post Four-State Barcode
ROYAL_TNT_POST
Royal TNT Post Four-State Barcode, a.k.a. KIX, Klant IndeX
AUSTRALIA_POST
Australia Post Four-State Customer Code
DATABAR_LIMITED
GS1 DataBar Limited
MICRO_PDF_417
DataBar micro pdf 417
GS1_COMPOSITE
GS1 DataBar Composite
MAXI_CODE
Maxicode
RMQR_CODE
RMQR code
CODE_11
Code 11 barcode type
CODE_32
Code 32 barcode type
-
Method Summary
Modifier and Type Method Description final BarcodeFormat
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<BarcodeFormat>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final BarcodeFormat valueOf(String value)
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.)
-
values
final 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.
-
-
-
-