public static enum TransactionDetailEvent.TransactionSource extends Enum<TransactionDetailEvent.TransactionSource>
| Enum Constant and Description |
|---|
BILLING
Take ID and find transaction via billing service, use transactionId from response
as value which will be send to transaction detail page
|
PAYMENT
Take ID as is an send it to transaction detail page
|
| Modifier and Type | Method and Description |
|---|---|
static TransactionDetailEvent.TransactionSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionDetailEvent.TransactionSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionDetailEvent.TransactionSource PAYMENT
public static final TransactionDetailEvent.TransactionSource BILLING
public static TransactionDetailEvent.TransactionSource[] values()
for (TransactionDetailEvent.TransactionSource c : TransactionDetailEvent.TransactionSource.values()) System.out.println(c);
public static TransactionDetailEvent.TransactionSource 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 © 2023. All rights reserved.