Class ScanResult

  • All Implemented Interfaces:
    java.io.Serializable

    public class ScanResult
    extends java.lang.Object
    implements java.io.Serializable
    Result of the scan flow
    See Also:
    Serialized Form
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  ScanResult.OcrResult  
      static class  ScanResult.Scan
      A single page that was scanned during the scan flow.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.io.File multiPageDocument
      Document containing the pages that were scanned during the scan flow.
      java.io.File pdfFile
      Deprecated.
      Replaced by multiPageDocument
      java.util.List<ScanResult.Scan> scans
      List of pages that were scanned during the scan flow.
    • Constructor Summary

      Constructors 
      Constructor Description
      ScanResult()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • multiPageDocument

        @Nullable
        public java.io.File multiPageDocument
        Document containing the pages that were scanned during the scan flow. The format is specified by {ScanConfiguration.multiPageFormat. Can be null if no format was specified or if generation failed.
      • pdfFile

        @Deprecated
        @Nullable
        public java.io.File pdfFile
        Deprecated.
        Replaced by multiPageDocument
      • scans

        public java.util.List<ScanResult.Scan> scans
        List of pages that were scanned during the scan flow.
    • Constructor Detail

      • ScanResult

        public ScanResult()