public class ScanDataCollection extends Object
{@code Example Usage:
Modifier and Type | Class and Description |
---|---|
static class |
ScanDataCollection.LabelType
List of label types of the scanner data
|
class |
ScanDataCollection.ScanData
The ScanData object gives information on the barcode data scanned.
|
Modifier and Type | Method and Description |
---|---|
String |
getFriendlyName()
Returns the friendly name of scanner for which the data is returned.
|
ScannerResults |
getResult()
This method used to obtain the scanned result.
|
ArrayList<ScanDataCollection.ScanData> |
getScanData()
This method is used to obtain the scanned data list.
|
public String getFriendlyName()
public ScannerResults getResult()
Example Usage: ScannerResults results = scanDataCollection.getResult();
public ArrayList<ScanDataCollection.ScanData> getScanData()
Example Usage: ArrayList<ScanData> scanDataList = scanDataCollection.getScanData()