Class VinBarcodeResult


  • public class VinBarcodeResult
    extends java.lang.Object
    Result of the barcode scanner.
    • 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