Package io.scanbot.sdk.vin
Class VinScannerResult
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class VinScannerResult implements Parcelable
Result of the VIN scanner.
-
-
Field Summary
Fields Modifier and Type Field Description private final TextPatternScannerResult
textResult
private final VinBarcodeResult
barcodeResult
-
Constructor Summary
Constructors Constructor Description VinScannerResult(Map<String, Object> source)
VinScannerResult(JSONObject json)
VinScannerResult(TextPatternScannerResult textResult, VinBarcodeResult barcodeResult)
-
Method Summary
Modifier and Type Method Description final TextPatternScannerResult
getTextResult()
Text result of the VIN scanner. final VinBarcodeResult
getBarcodeResult()
Barcode result of the VIN scanner. final JSONObject
toJson(ToJsonConfiguration config)
final VinScannerResult
clone()
-
-
Constructor Detail
-
VinScannerResult
VinScannerResult(JSONObject json)
-
VinScannerResult
VinScannerResult(TextPatternScannerResult textResult, VinBarcodeResult barcodeResult)
-
-
Method Detail
-
getTextResult
final TextPatternScannerResult getTextResult()
Text result of the VIN scanner.
-
getBarcodeResult
final VinBarcodeResult getBarcodeResult()
Barcode result of the VIN scanner.
-
toJson
final JSONObject toJson(ToJsonConfiguration config)
-
clone
final VinScannerResult clone()
-
-
-
-