Package io.scanbot.sdk.documentscanner
Enum DocumentDisplacement
- java.lang.Object
-
- java.lang.Enum<DocumentDisplacement>
-
- io.scanbot.sdk.documentscanner.DocumentDisplacement
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DocumentDisplacement>
public enum DocumentDisplacement extends java.lang.Enum<DocumentDisplacement>
The displacement of the document from the image center if the document is partially visible.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOWNThe document is partially visible and occupies the lower part of the image.LEFTThe document is partially visible and occupies the left part of the image.LOWER_LEFTThe document is partially visible and occupies the lower left part of the image.LOWER_RIGHTThe document is partially visible and occupies the lower right part of the image.NONEThe document is fully visible.RIGHTThe document is partially visible and occupies the right part of the image.UPThe document is partially visible and occupies the upper part of the image.UPPER_LEFTThe document is partially visible and occupies the upper left part of the image.UPPER_RIGHTThe document is partially visible and occupies the upper right part of the image.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DocumentDisplacementvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DocumentDisplacement[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final DocumentDisplacement NONE
The document is fully visible.
-
UP
public static final DocumentDisplacement UP
The document is partially visible and occupies the upper part of the image.
-
UPPER_RIGHT
public static final DocumentDisplacement UPPER_RIGHT
The document is partially visible and occupies the upper right part of the image.
-
RIGHT
public static final DocumentDisplacement RIGHT
The document is partially visible and occupies the right part of the image.
-
LOWER_RIGHT
public static final DocumentDisplacement LOWER_RIGHT
The document is partially visible and occupies the lower right part of the image.
-
DOWN
public static final DocumentDisplacement DOWN
The document is partially visible and occupies the lower part of the image.
-
LOWER_LEFT
public static final DocumentDisplacement LOWER_LEFT
The document is partially visible and occupies the lower left part of the image.
-
LEFT
public static final DocumentDisplacement LEFT
The document is partially visible and occupies the left part of the image.
-
UPPER_LEFT
public static final DocumentDisplacement UPPER_LEFT
The document is partially visible and occupies the upper left part of the image.
-
-
Method Detail
-
values
public static DocumentDisplacement[] 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 (DocumentDisplacement c : DocumentDisplacement.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentDisplacement 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
-
-