Enum Class OCRResult.FieldResultStatus
- All Implemented Interfaces:
Serializable,Comparable<OCRResult.FieldResultStatus>,Constable
- Enclosing interface:
OCRResult
Status da leitura do campo
- Author:
- Eduardo Frazao
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionO Valor nao pode ser convertido para seu tipo de destinoRepresenta erro de leitura, nao havia valor disponivel e o mesmo era obrigatorio na especificacaoSucesso na leitura Tambem pode representar que o valor nao foi lido mas de fato nao era obrigatorio -
Method Summary
Modifier and TypeMethodDescriptionstatic OCRResult.FieldResultStatusReturns the enum constant of this class with the specified name.static OCRResult.FieldResultStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUCCESS
Sucesso na leitura Tambem pode representar que o valor nao foi lido mas de fato nao era obrigatorio -
NO_VALUE
Representa erro de leitura, nao havia valor disponivel e o mesmo era obrigatorio na especificacao -
CONVERSION_ERROR
O Valor nao pode ser convertido para seu tipo de destino
-
-
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
-