Package com.scytales.mvalid.sdk
Enum VerifierSDKStatus
-
- All Implemented Interfaces:
public enum VerifierSDKStatus
The enum Verifier sdk status.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NEVER_INITIALIZED
The SDK is not initialized
INITIALIZED
SDK is properly initialized
INVALID_MACHINE_CODE
Invalid machine code while initializing SDK
EXPIRED
SDK license has expired.
INVALID_LICENSE
Invalid license used while initializing SDK
-
Method Summary
Modifier and Type Method Description String
toString()
static Array<VerifierSDKStatus>
values()
Returns an array containing the constants of this enum type, in the order they're declared. static VerifierSDKStatus
valueOf(String name)
Returns the enum constant of this type with the specified name. String
getMessage()
Gets Status message. -
-
Method Detail
-
values
static Array<VerifierSDKStatus> 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.
-
valueOf
static VerifierSDKStatus valueOf(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.)
-
getMessage
@NonNull() String getMessage()
Gets Status message.
-
-
-
-