BarcodeType enum

Enumeration contains the types of barcodes that can be processed.

Inheritance

Constructors

BarcodeType(int value)
const

Values

UNKNOWN → const BarcodeType

Unknown.

BarcodeType(0)
BCT_CODE128 → const BarcodeType

One-dimensional barcode, ISO 15417 (ANSI/AIM BC4-1999 Code 128).

BarcodeType(1)
CODE39 → const BarcodeType

One-dimensional barcode, ISO 16388 (ANSI/AIM BC1-1995 Code 39).

BarcodeType(2)
EAN8 → const BarcodeType

One-dimensional barcode, EAN8, ISO 15418.

BarcodeType(3)
ITF → const BarcodeType

One-dimensional barcode, Interleaved 2 of 5, ISO 16390 (ANSI/AIM BC2-1995 Interleaved 2 of 5).

BarcodeType(4)
PDF417 → const BarcodeType

Two-dimensional barcode, ISO 15438 (AIM USS PDF417).

BarcodeType(5)
STF → const BarcodeType

One-dimensional barcode, Standard 2 of 5 (Industrial).

BarcodeType(6)
MTF → const BarcodeType

One-dimensional barcode, Matrix 2 of 5.

BarcodeType(7)
IATA → const BarcodeType

One-dimensional barcode, IATA 2 of 5 (Airline).

BarcodeType(8)
CODABAR → const BarcodeType

One-dimensional barcode, (ANSI/AIM BC3-1995, USS - Codabar).

BarcodeType(9)
UPCA → const BarcodeType

One-dimensional barcode, UPC-A.

BarcodeType(10)
CODE93 → const BarcodeType

One-dimensional barcode, (ANSI/AIM BC5-1995, USS - Code 93).

BarcodeType(11)
UPCE → const BarcodeType

One-dimensional barcode, UPC-E.

BarcodeType(12)
EAN13 → const BarcodeType

One-dimensional barcode, EAN13, ISO 15418.

BarcodeType(13)
QRCODE → const BarcodeType

Two-dimensional QR barcode.

BarcodeType(14)
AZTEC → const BarcodeType

Two-dimensional AZTEC barcode.

BarcodeType(15)
DATAMATRIX → const BarcodeType

Two-dimensional DATAMATRIX barcode.

BarcodeType(16)
ALL_1D → const BarcodeType

One-dimensional barcodes.

BarcodeType(17)
CODE11 → const BarcodeType

One-dimensional barcode, Code 11.

BarcodeType(18)
JABCODE → const BarcodeType

Two-dimensional barcode, JAB Code

BarcodeType(19)

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value int
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromIntList(List<int>? input) List<BarcodeType>?
getByValue(int? i) BarcodeType?
toIntList(List<BarcodeType>? input) List<int>?

Constants

values → const List<BarcodeType>
A constant List of the values in this enum, in order of their declaration.
[UNKNOWN, BCT_CODE128, CODE39, EAN8, ITF, PDF417, STF, MTF, IATA, CODABAR, UPCA, CODE93, UPCE, EAN13, QRCODE, AZTEC, DATAMATRIX, ALL_1D, CODE11, JABCODE]