public enum CardDigitizationState extends Enum<CardDigitizationState>
Enum Constant and Description |
---|
DIGITIZATION_IN_PROGRESS
Card digitization in progress.
|
DIGITIZED
Card has been digitized.
|
NOT_DIGITIZED
Card has not been digitized.
|
PENDING_IDV
Google Pay only.
|
Modifier and Type | Method and Description |
---|---|
static CardDigitizationState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CardDigitizationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardDigitizationState DIGITIZED
Application should not show the button Add to Wallet (example the Add to Google Pay button).
public static final CardDigitizationState NOT_DIGITIZED
Application should show the button Add to Wallet (example the Add to Google Pay button).
public static final CardDigitizationState PENDING_IDV
Card has been digitized but not yet activated.
Step up authentication with the bank application (Yellow Flow inApp Verification) is required for the card.
public static final CardDigitizationState DIGITIZATION_IN_PROGRESS
public static CardDigitizationState[] values()
for (CardDigitizationState c : CardDigitizationState.values()) System.out.println(c);
public static CardDigitizationState 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