Enum Feature

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Feature>

    public enum Feature
    extends java.lang.Enum<Feature>
    License features.
    • Enum Constant Detail

      • BARCODE_SCANNER

        public static final Feature BARCODE_SCANNER
        Barcode scanner.
      • CHECK_SCANNER

        public static final Feature CHECK_SCANNER
        Check scanner.
      • CREDIT_CARD_SCANNER

        public static final Feature CREDIT_CARD_SCANNER
        Credit card scanner.
      • IMAGE_PROCESSING

        public static final Feature IMAGE_PROCESSING
        Image processing.
      • DOCUMENT_SCANNER

        public static final Feature DOCUMENT_SCANNER
        Document scanner.
      • LICENSE_PLATE_SCANNER

        public static final Feature LICENSE_PLATE_SCANNER
        License plate scanner.
      • MEDICAL_CERTIFICATE_SCANNER

        public static final Feature MEDICAL_CERTIFICATE_SCANNER
        Medical certificate scanner.
      • MRZ_SCANNER

        public static final Feature MRZ_SCANNER
        MRZ scanner.
      • OCR

        public static final Feature OCR
        OCR.
      • TEXT_PATTERN_SCANNER

        public static final Feature TEXT_PATTERN_SCANNER
        Text pattern scanner.
      • PDF_CREATION

        public static final Feature PDF_CREATION
        PDF creation.
      • ID_CARD_SCANNER

        public static final Feature ID_CARD_SCANNER
        ID card scanner.
      • DRIVER_LICENSE_SCANNER

        public static final Feature DRIVER_LICENSE_SCANNER
        Driver license scanner.
      • EHIC_SCANNER

        public static final Feature EHIC_SCANNER
        EHIC scanner.
      • DOCUMENT_CLASSIFICATION

        public static final Feature DOCUMENT_CLASSIFICATION
        Document classification.
    • Method Detail

      • values

        public static Feature[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Feature c : Feature.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Feature valueOf​(java.lang.String name)
        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.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null