public enum PinVerifyError extends java.lang.Enum<PinVerifyError>
enumeration of error occured during PIN verification
Enum Constant and Description |
---|
accessErr |
blocking |
interruption |
timeout |
Modifier and Type | Method and Description |
---|---|
int |
getErrorIndex() |
java.lang.String |
getErrorMsg()
error text
|
java.lang.String |
toString() |
static PinVerifyError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PinVerifyError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PinVerifyError timeout
public static final PinVerifyError accessErr
public static final PinVerifyError interruption
public static final PinVerifyError blocking
public static PinVerifyError[] values()
for (PinVerifyError c : PinVerifyError.values()) System.out.println(c);
public static PinVerifyError valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getErrorMsg()
error text
public int getErrorIndex()
public java.lang.String toString()
toString
in class java.lang.Enum<PinVerifyError>