Enum PageImageSource

  • All Implemented Interfaces:
    java.io.Serializable , kotlin.Comparable

    
    public enum PageImageSource
    extends Enum<PageImageSource>
                        

    Represents the source of the image of pages

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      UNDEFINED

      Used by default. If the source is not defined. For example, an image was imported

      MANUAL_SNAP

      If the source image was captured manually. For example, when the user pressed a Snap button

      AUTOSNAPPING

      If the source image was captured automatically. For example, by auto snapping functions

      CAMERA_FRAME

      If the source image was taken from the camera frame

      IMPORT

      If the source image was imported from external source

    • Method Summary

      Modifier and Type Method Description
      final PageImageSource valueOf(String value) Returns the enum constant of this type with the specified name.
      final Array<PageImageSource> values() Returns an array containing the constants of this enum type, in the order they're declared.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • valueOf

         final PageImageSource valueOf(String value)

        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

      • values

         final Array<PageImageSource> values()

        Returns an array containing the constants of this enum type, in the order they're declared.

        This method may be used to iterate over the constants.