public class ScanDataCollection
extends java.lang.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 | 
|---|---|
java.lang.String | 
getFriendlyName()
Returns the friendly name of scanner for which the data is returned. 
 | 
java.lang.String | 
getLabelIdentifier()
Get the decoded type of the barcode. 
 | 
ScannerResults | 
getResult()
This method used to obtain the scanned result. 
 | 
java.util.ArrayList<ScanDataCollection.ScanData> | 
getScanData()
This method is used to obtain the scanned data list. 
 | 
TokenizedData | 
getTokenizedData()
List of tokenized data received after processing the raw scanner data 
 | 
public java.lang.String getFriendlyName()
public ScannerResults getResult()
Example Usage: ScannerResults results = scanDataCollection.getResult();
public java.util.ArrayList<ScanDataCollection.ScanData> getScanData()
Example Usage: ArrayList<ScanData> scanDataList = scanDataCollection.getScanData()
public java.lang.String getLabelIdentifier()
Example Usage: String labelIdentifier = scanDataCollection.getLabelIdentifier();
public TokenizedData getTokenizedData()
Example Usage: TokenizedData tokenizedData = scanDataCollection.getTokenizedData();