Package io.scanbot.sdk.vin
Class VinBarcodeResult
- java.lang.Object
-
- io.scanbot.sdk.vin.VinBarcodeResult
-
public class VinBarcodeResult extends java.lang.ObjectResult of the barcode scanner.
-
-
Constructor Summary
Constructors Constructor Description VinBarcodeResult(java.lang.String extractedVIN, java.util.List<Point> rectangle, VinBarcodeExtractionStatus status)Constructs VinBarcodeResult with the given params.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetExtractedVIN()Getter for extractedVIN field.java.util.List<Point>getRectangle()Getter for rectangle field.VinBarcodeExtractionStatusgetStatus()Getter for status field.
-
-
-
Constructor Detail
-
VinBarcodeResult
public VinBarcodeResult(java.lang.String extractedVIN, java.util.List<Point> rectangle, VinBarcodeExtractionStatus status)Constructs VinBarcodeResult with the given params.- Parameters:
extractedVIN- Text result of the barcode scanner.rectangle- Rectangle of the barcode in the image.status- Status of the barcode extraction.
-
-
Method Detail
-
getExtractedVIN
public java.lang.String getExtractedVIN()
Getter for extractedVIN field. See constructor documentation for more information about the field.- Returns:
- extractedVIN
-
getRectangle
public java.util.List<Point> getRectangle()
Getter for rectangle field. See constructor documentation for more information about the field.- Returns:
- rectangle
-
getStatus
public VinBarcodeExtractionStatus getStatus()
Getter for status field. See constructor documentation for more information about the field.- Returns:
- status
-
-