Enum DocumentImageColorStatus
- java.lang.Object
-
- java.lang.Enum<DocumentImageColorStatus>
-
- com.microblink.entities.recognizers.blinkid.generic.imageanalysis.DocumentImageColorStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DocumentImageColorStatus>
public enum DocumentImageColorStatus extends java.lang.Enum<DocumentImageColorStatus>
Defines possible color statuses determined from scanned image.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BlackAndWhite
Black-and-white image scannedColor
Color image scannedNotAvailable
Image color status is not available.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DocumentImageColorStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DocumentImageColorStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NotAvailable
public static final DocumentImageColorStatus NotAvailable
Image color status is not available. Check has not been performed.
-
BlackAndWhite
public static final DocumentImageColorStatus BlackAndWhite
Black-and-white image scanned
-
Color
public static final DocumentImageColorStatus Color
Color image scanned
-
-
Method Detail
-
values
public static DocumentImageColorStatus[] 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 (DocumentImageColorStatus c : DocumentImageColorStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocumentImageColorStatus 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
-
-