Package io.scanbot.barcodescanner.model
Class BarcodeItem
-
- All Implemented Interfaces:
public final class BarcodeItemDecoded bar code information.
-
-
Field Summary
Fields Modifier and Type Field Description private final BarcodeTypetypeprivate final Map<BarcodeMetadataKey, String>metadataprivate final StringrawStringprivate final GenericDocumentparsedDocumentprivate final ByteArrayrawBytesprivate final Bitmapimageprivate final List<Point>pointsList
-
Method Summary
Modifier and Type Method Description final BarcodeTypegetType()Barcode type. final Map<BarcodeMetadataKey, String>getMetadata()Additional metadata of the barcode. final StringgetRawString()Raw recognized string. final GenericDocumentgetParsedDocument()Parsed known document format. final ByteArraygetRawBytes()Barcode data representation as a byte array. final BitmapgetImage()Detected barcode image. final List<Point>getPointsList()Polygon's points. -
-
Method Detail
-
getType
final BarcodeType getType()
Barcode type.
-
getMetadata
final Map<BarcodeMetadataKey, String> getMetadata()
Additional metadata of the barcode.
-
getRawString
final String getRawString()
Raw recognized string.
-
getParsedDocument
final GenericDocument getParsedDocument()
Parsed known document format.
-
getRawBytes
final ByteArray getRawBytes()
Barcode data representation as a byte array.
-
getPointsList
final List<Point> getPointsList()
Polygon's points.
-
-
-
-