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 classBarcodeFormat.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description AZTECAztec barcode type
CODABARCodabar barcode type
CODE_25Code 25 barcode type
CODE_39Code 39 barcode type
CODE_93Code 93 barcode type
CODE_128Code 128 barcode type
DATA_MATRIXData Matrix barcode type
EAN_8EAN-8 barcode type
EAN_13EAN-13 barcode type
ITFITF (Interleaved 2 of 5) barcode type
PDF_417PDF417 barcode type
QR_CODEQR Code barcode type
MICRO_QR_CODEMicro QR Code barcode type
DATABARDatabar barcode type
DATABAR_EXPANDEDDatabar Expanded barcode type
UPC_AUPC-A barcode type
UPC_EUPC-E barcode type
MSI_PLESSEYMSI Plessey barcode type
IATA_2_OF_5IATA 2 of 5 barcode type
INDUSTRIAL_2_OF_5Industrial 2 of 5 barcode type
USPS_INTELLIGENT_MAILUSPS Intelligent Mail (aka USPS OneCode, USPS-STD-11)
ROYAL_MAILRoyal Mail Four-State Customer Code, (aka RM4SCC, CBC, BPO 4 State Code)
JAPAN_POSTJapan Post Four-State Barcode
ROYAL_TNT_POSTRoyal TNT Post Four-State Barcode (aka KIX, Klant IndeX)
AUSTRALIA_POSTAustralia Post Four-State Customer Code
DATABAR_LIMITEDGS1 DataBar Limited
GS1_COMPOSITEGS1 Composite
MICRO_PDF_417Databar micro pdf 417
MAXI_CODEMaxicode
RMQR_CODERMQR code
CODE_11Code 11 barcode type
CODE_32Code 32 barcode type
-
Method Summary
Modifier and Type Method Description final StringtoJson()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.
-
-
-
-