Enum AcknowledgementMode
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum AcknowledgementMode extends Enum<AcknowledgementMode>
Determines, after each page is snapped, whether the acknowledgment screen should be displayed or not.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
AcknowledgementMode.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description BAD_QUALITY
The acknowledgement screen will only be shown when the quality of a scanned page is unacceptable. The quality threshold is determined by the
minimumQuality
parameter.ALWAYS
The acknowledgement screen will always be shown after each snap, regardless of the scanned page's quality.
NONE
The acknowledgement screen will be disabled, in effect never shown.
-
Method Summary
Modifier and Type Method Description final String
toJson()
final AcknowledgementMode
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<AcknowledgementMode>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final AcknowledgementMode 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<AcknowledgementMode> 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.
-
-
-
-