public enum State extends Enum<State>
Enum Constant and Description |
---|
ACTIVE
Card is active
|
DELETED
Card is deleted
|
EXPIRED
Card is expired
|
INACTIVE
Card is inactive
|
PENDING_IDV
The token is in the active wallet, but requires additional user authentication for use (yellow path step-up).
|
UNKNOWN
The token state is not defined.
|
Modifier and Type | Method and Description |
---|---|
static State |
fromString(String val)
(internal usage)
|
String |
toString() |
static State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final State ACTIVE
public static final State INACTIVE
public static final State EXPIRED
public static final State DELETED
public static final State PENDING_IDV
public static final State UNKNOWN
Category - D1Pay API
public static State[] values()
for (State c : State.values()) System.out.println(c);
public static State 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 null