Enum Class DocumentSpecificationPreset
java.lang.Object
java.lang.Enum<DocumentSpecificationPreset>
com.microblink.blinkinput.entities.detectors.quad.document.DocumentSpecificationPreset
- All Implemented Interfaces:
Serializable,Comparable<DocumentSpecificationPreset>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUses detection settings for detection of A4 documents in landscape orientation (for example printed presentation slides)Uses detection settings for detection of A4 documents in portrait orientation (for example invoices)Uses detections settings for detecting chequesUses detection settings for detecting ID1 card format as explained here.Uses detection settings for detecting ID1 card format in vertical orientation as explained here.Uses detection settings for detecting ID1 card format as explained here.Uses detection settings for detecting ID2 card format in vertical orientation as explained here. -
Method Summary
Modifier and TypeMethodDescriptionstatic DocumentSpecificationPresetReturns the enum constant of this class with the specified name.static DocumentSpecificationPreset[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DOCUMENT_SPECIFICATION_PRESET_ID1_CARD
Uses detection settings for detecting ID1 card format as explained here. -
DOCUMENT_SPECIFICATION_PRESET_ID2_CARD
Uses detection settings for detecting ID1 card format as explained here. -
DOCUMENT_SPECIFICATION_PRESET_ID1_VERTICAL_CARD
Uses detection settings for detecting ID1 card format in vertical orientation as explained here. -
DOCUMENT_SPECIFICATION_PRESET_ID2_VERTICAL_CARD
Uses detection settings for detecting ID2 card format in vertical orientation as explained here. -
DOCUMENT_SPECIFICATION_PRESET_CHEQUE
Uses detections settings for detecting cheques -
DOCUMENT_SPECIFICATION_PRESET_A4_PORTRAIT
Uses detection settings for detection of A4 documents in portrait orientation (for example invoices) -
DOCUMENT_SPECIFICATION_PRESET_A4_LANDSCAPE
Uses detection settings for detection of A4 documents in landscape orientation (for example printed presentation slides)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-