Enum JsonBarcodeFormat
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum JsonBarcodeFormat extends Enum<JsonBarcodeFormat>
Barcode document format
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AZTEC
Aztec barcode type
CODABAR
CODABAR barcode type
CODE_25
CODE_25 barcode type
CODE_39
CODE_39 barcode type
CODE_93
CODE_93 barcode type
CODE_128
CODE_128 barcode type
DATA_MATRIX
DATA_MATRIX barcode type
EAN_8
EAN_8 barcode type
EAN_13
EAN_13 barcode type
ITF
ITF barcode type
PDF_417
PDF_417 barcode type
QR_CODE
QR_CODE barcode type
MICRO_QR_CODE
MICRO_QR_CODE barcode type
DATABAR
DATABAR barcode type
DATABAR_EXPANDED
DATABAR_EXPANDED barcode type
UPC_A
UPC_A barcode type
UPC_E
UPC_E barcode type
MSI_PLESSEY
MSI Plessey barcode type
IATA_2_OF_5
IATA (2 of 5) barcode type
INDUSTRIAL_2_OF_5
INDUSTRIAL (2 of 5) barcode type
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
GS1_COMPOSITE
GS1 DataBar Composite
MICRO_PDF_417
Micro pdf 417
MAXI_CODE
Maxicode
RMQR_CODE
rMQR Code
CODE_11
Code 11
CODE_32
Code 32
-
Method Summary
Modifier and Type Method Description final JsonBarcodeFormat
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<JsonBarcodeFormat>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final JsonBarcodeFormat 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<JsonBarcodeFormat> 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.
-
-
-
-