public enum PaymentEventType extends java.lang.Enum<PaymentEventType>
Enum Constant and Description |
---|
INVOICE_CREATED
Event signaling that a payments invoice have been created by lightning handler.
|
INVOICE_SETTLED
Event signaling that a invoice have been settled.
|
ORDER_CREATED
Event signaling a order was created.
|
REQUEST_EXECUTED
Event signaling that a payed request has been executed.
|
Modifier and Type | Field and Description |
---|---|
static PaymentEventType |
ANY_TYPE
Special constant indicating ANY type is applicable.
|
Modifier and Type | Method and Description |
---|---|
static PaymentEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaymentEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentEventType ORDER_CREATED
public static final PaymentEventType INVOICE_CREATED
public static final PaymentEventType INVOICE_SETTLED
public static final PaymentEventType REQUEST_EXECUTED
public static final PaymentEventType ANY_TYPE
public static PaymentEventType[] values()
for (PaymentEventType c : PaymentEventType.values()) System.out.println(c);
public static PaymentEventType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null