Package io.scanbot.sdk.licensing
Enum Feature
- java.lang.Object
-
- java.lang.Enum<Feature>
-
- io.scanbot.sdk.licensing.Feature
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BARCODE_SCANNERBarcode scanner.CHECK_SCANNERCheck scanner.CREDIT_CARD_SCANNERCredit card scanner.DOCUMENT_CLASSIFICATIONDocument classification.DOCUMENT_SCANNERDocument scanner.DRIVER_LICENSE_SCANNERDriver license scanner.EHIC_SCANNEREHIC scanner.ID_CARD_SCANNERID card scanner.IMAGE_PROCESSINGImage processing.LICENSE_PLATE_SCANNERLicense plate scanner.MEDICAL_CERTIFICATE_SCANNERMedical certificate scanner.MRZ_SCANNERMRZ scanner.OCROCR.PDF_CREATIONPDF creation.TEXT_PATTERN_SCANNERText pattern scanner.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FeaturevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Feature[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 namejava.lang.NullPointerException- if the argument is null
-
-