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 classBarcodeFormat.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description AZTECAztec 2D barcode format.
CODABARCODABAR 1D format.
CODE_25Code 25 1D format.
CODE_39Code 39 1D format.
CODE_93Code 93 1D format.
CODE_128Code 128 1D format.
DATA_MATRIXData Matrix 2D barcode format.
EAN_8EAN-8 1D format.
EAN_13EAN-13 1D format.
ITFITF (Interleaved Two of Five) 1D format.
PDF_417PDF417 format.
QR_CODEQR Code 2D barcode format.
MICRO_QR_CODEMicro QR Code 2D barcode format.
DATABARGS1 DataBar-14 (formerly RSS-14) (1D)
DATABAR_EXPANDEDGS1 DataBar Expanded (formerly RSS Expanded) (1D)
UPC_AUPC-A 1D format.
UPC_EUPC-E 1D format.
MSI_PLESSEYMSI_PLESSEY barcode format
IATA_2_OF_5IATA_2_OF_5 barcode format
INDUSTRIAL_2_OF_5INDUSTRIAL_2_OF_5 barcode format
USPS_INTELLIGENT_MAILUSPS Intelligent Mail, a.k.a. USPS OneCode, USPS-STD-11
ROYAL_MAILRoyal Mail Four-State Customer Code, a.k.a. RM4SCC, CBC, BPO 4 State Code
JAPAN_POSTJapan Post Four-State Barcode
ROYAL_TNT_POSTRoyal TNT Post Four-State Barcode, a.k.a. KIX, Klant IndeX
AUSTRALIA_POSTAustralia Post Four-State Customer Code
DATABAR_LIMITEDGS1 DataBar Limited
MICRO_PDF_417DataBar micro pdf 417
GS1_COMPOSITEGS1 DataBar Composite
MAXI_CODEMaxicode
RMQR_CODERMQR code
CODE_11Code 11 barcode type
CODE_32Code 32 barcode type
-
Method Summary
Modifier and Type Method Description final BarcodeFormatvalueOf(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.
-
-
-
-