DecodedBarcodesResult Class
The DecodedBarcodesResult class represents the result of a barcode reading process. It provides access to information about the decoded barcodes, the source image, and any errors that occurred during the barcode reading process.
Definition
Package: com.dynamsoft.dbr
Inheritance: CapturedResultBase -> DecodedBarcodesResult
public class DecodedBarcodesResult extends CapturedResultBase
Methods
| Method | Description |
|---|---|
getItemsCount |
Gets the count of decoded barcode result items. |
getItem |
Gets the decoded barcode result item at the specified index. |
getItems |
Gets all the decoded barcode result items. |
Method Details
getItemsCount
Gets the count of decoded barcode result items.
public int getItemsCount()
Return Value
Returns the count of decoded barcode result items.
getItem
Gets the decoded barcode result item at the specified index.
public BarcodeResultItem getItem(int index)
Parameters
index: The index of the result item to retrieve.
Return Value
Returns the BarcodeResultItem at the specified index.
getItems
Gets all the decoded barcode result items.
public BarcodeResultItem[] getItems()
Return Value
Returns an array of all BarcodeResultItem objects.
See Also