Enum BarcodeFormat
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum BarcodeFormat extends Enum<BarcodeFormat>
Barcode symbology used.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
BarcodeFormat.Companion
-
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 (Interleaved 2 of 5) barcode type
PDF_417
PDF417 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 (aka USPS OneCode, USPS-STD-11)
ROYAL_MAIL
Royal Mail Four-State Customer Code, (aka RM4SCC, CBC, BPO 4 State Code)
JAPAN_POST
Japan Post Four-State Barcode
ROYAL_TNT_POST
Royal TNT Post Four-State Barcode (aka KIX, Klant IndeX)
AUSTRALIA_POST
Australia Post Four-State Customer Code
DATABAR_LIMITED
GS1 DataBar Limited
GS1_COMPOSITE
GS1 Composite
MICRO_PDF_417
Databar micro pdf 417
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 String
toJson()
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.
-
-
-
-