public enum PinMatrixRequestType extends Enum<PinMatrixRequestType>
Enum to provide the following to high level messages:
Enum Constant and Description |
---|
CURRENT
Requesting the current PIN
|
NEW_FIRST
Requesting a new PIN for the first time
|
NEW_SECOND
Requesting a new PIN for the second time to confirm
|
Modifier and Type | Method and Description |
---|---|
static PinMatrixRequestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PinMatrixRequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PinMatrixRequestType CURRENT
public static final PinMatrixRequestType NEW_FIRST
public static final PinMatrixRequestType NEW_SECOND
public static PinMatrixRequestType[] values()
for (PinMatrixRequestType c : PinMatrixRequestType.values()) System.out.println(c);
public static PinMatrixRequestType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2013–2019 Bitcoin Solutions Ltd. All rights reserved.