Package io.scanbot.sdk.barcode.document
Interface BarcodeDocumentParser
-
- All Implemented Interfaces:
public interface BarcodeDocumentParser
Allows to parse a raw string value (usually taken from the barcode) into a formatted document of the given types.
-
-
Method Summary
Modifier and Type Method Description abstract GenericDocument
parseDocument(String input, List<BarcodeDocumentFormat> acceptedFormats)
Parses the string into one of the supported document type or returns null if none of the supported document types was found.
-
-
-
Method Detail
-
parseDocument
abstract GenericDocument parseDocument(String input, List<BarcodeDocumentFormat> acceptedFormats)
Parses the string into one of the supported document type or returns null if none of the supported document types was found.
- Parameters:
input
- input stringacceptedFormats
- accepted document formats
-
-