Enum Constant and Description |
---|
INCORRECT_PIN |
INCORRECT_PIN_FINAL_TRY |
OK |
PIN_LOCKED |
Modifier and Type | Method and Description |
---|---|
static E_KEYS |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static E_KEYS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final E_KEYS INCORRECT_PIN
public static final E_KEYS INCORRECT_PIN_FINAL_TRY
public static final E_KEYS PIN_LOCKED
public static final E_KEYS OK
public static E_KEYS[] values()
for (E_KEYS c : E_KEYS.values()) System.out.println(c);
public static E_KEYS 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 nullCopyright © 2025. All rights reserved.