IMEI One Barcode

Defined in library scandit_datacapture_label

ImeiOneBarcode
class ImeiOneBarcode : BarcodeField

Added in version 7.2.0

A specialized barcode field for capturing the first IMEI (International Mobile Equipment Identity) number from smart device labels. This predefined field type is optimized for recognizing IMEI barcodes typically found on mobile device packaging and labels.

Use the builder pattern with ImeiOneBarcodeBuilder for convenient configuration, or create instances directly using the various factory methods.

ImeiOneBarcode.initWithNameAndSymbologySettings(name, symbologySettings)
factory ImeiOneBarcode.initWithNameAndSymbologySettings(
        String name,
        List<SymbologySettings> symbologySettings)

Added in version 7.2.0

Builds a new instance of this class with the provided name.

ImeiOneBarcode.initWithNameAndSymbologies(name, symbologies)
factory ImeiOneBarcode.initWithNameAndSymbologies(
        String name,
        Set<Symbology> symbologies)

Added in version 7.2.0

Builds a new instance of this class with the provided name.

ImeiOneBarcode.initWithNameAndSymbology(name, symbology)
factory ImeiOneBarcode.initWithNameAndSymbology(
        String name,
        Symbology symbology)

Added in version 7.2.0

Builds a new instance of this class with the provided name.

name
String get name

Added in version 7.2.0

The name of the field.

patterns
List<String> get patterns

Added in version 7.2.0

The regex patterns that identify the target string in the scanned content.

isOptional
bool get isOptional

Added in version 7.2.0

Whether the field is optional or mandatory. This is helpful when certain fields may not be present on every scan.

symbologies
List<SymbologySettings> get symbologies

Added in version 7.2.0

The symbologies for the field.