public static enum DeactivationStatus.Code extends Enum<DeactivationStatus.Code>
Enum Constant and Description |
---|
FAIL
Payment deactivation has failed.
|
SUCCESS
Payment has been deactivated successfully
|
Modifier and Type | Method and Description |
---|---|
static DeactivationStatus.Code |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeactivationStatus.Code[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeactivationStatus.Code SUCCESS
public static final DeactivationStatus.Code FAIL
When this happens, the integrator is suggested to either:
D1PayWallet.setDefaultPaymentDigitalCard(String, D1Task.Callback)
D1PayWallet.replenish(String, boolean, DeviceAuthenticationCallback, D1Task.Callback)
public static DeactivationStatus.Code[] values()
for (DeactivationStatus.Code c : DeactivationStatus.Code.values()) System.out.println(c);
public static DeactivationStatus.Code 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