public abstract class ScannerResultEntity
extends java.lang.Object
ScannerResultEntity abstract class wraps various attributes pertaining to result of
scans.| Modifier and Type | Class and Description |
|---|---|
static class |
ScannerResultEntity.Item
The
ScannerResultEntity.Item abstract class wraps various attributes pertaining to the result of
a scan. |
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
allFailure()
Returns a boolean that represents whether or not all the badges on a device unsuccessfully
processed the scan.
|
abstract boolean |
allSuccess()
Returns a boolean that represents whether or not all the badges on a device successfully
processed the scan.
|
abstract java.util.ArrayList<ScannerResultEntity.Item> |
badgeReportScannedDataEntityList()
Returns an
ArrayList of ScannerResultEntity.Item objects that wrap various attributes
pertaining to the result of a scan. |
abstract ScannerResultEntity |
withBadgeReportScannedDataEntityList(java.util.ArrayList<ScannerResultEntity.Item> badgeReportScannedDataEntityList)
Constructor for a
ScannerResultEntity object with the
badgeReportScannedDataEntityList set. |
public abstract java.util.ArrayList<ScannerResultEntity.Item> badgeReportScannedDataEntityList()
ArrayList of ScannerResultEntity.Item objects that wrap various attributes
pertaining to the result of a scan.ArrayList of ScannerResultEntity.Item objects.public abstract boolean allSuccess()
true if all the badges on a device successfully processed the scan;
false otherwise.public abstract ScannerResultEntity withBadgeReportScannedDataEntityList(java.util.ArrayList<ScannerResultEntity.Item> badgeReportScannedDataEntityList)
ScannerResultEntity object with the
badgeReportScannedDataEntityList set.badgeReportScannedDataEntityList - See badgeReportScannedDataEntityList()ScannerResultEntity object with the badgeReportScannedDataEntityList set.public abstract boolean allFailure()
true if all the badges on a device unsuccessfully processed the scan;
false otherwise.