EnumScanningMode
EnumScanningMode
is an enumeration class that defines the scanning mode.
If the status is finished, that indicates that the result has been decoded and is available - while canceled indicates that the operation has been halted. If the result status is exception, then that means that an error has occurred during the barcode detection process.
Definition
Assembly: DynamsoftBarcodeReaderBundle.aar
Namespace: com.dynamsoft.dbrbundle.ui
@IntDef(value = {SM_SINGLE, SM_MULTIPLE})
public @interface EnumScanningMode {
// The scan mode for scanning single barcode.
int SM_SINGLE = 0;
// The scan mode for scanning multiple barcodes.
int SM_MULTIPLE = 1;
}